-
-
Save hcozart/4f4e439a79d511c6e5208757dda052dc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ggplot(data = NYC_Death2, aes(x= Year,y=Count)) + | |
geom_bar(aes(fill = Ethnicity), position ="dodge",stat = "identity")+ | |
ggtitle("Number of Deaths by Ethnicity and Year") + | |
ylab(label = "Deaths" )+ scale_fill_brewer(palette = "Set1") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment