Skip to content

Instantly share code, notes, and snippets.

Created August 4, 2016 22:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/6630133e77960f7b1a0b58fde777cd4f to your computer and use it in GitHub Desktop.
Save anonymous/6630133e77960f7b1a0b58fde777cd4f to your computer and use it in GitHub Desktop.
Crime rates in NYC
ctysum <- crime_nyc %>%
select(Year, Index.Rate, Property.Rate, Violent.Rate,
Firearm.Rate) %>%
group_by(Year) %>%
summarise(Index.Rate=mean(Index.Rate),
Property.Rate=mean(Property.Rate),
Violent.Rate=mean(Violent.Rate),
Firearm.Rate=mean(Firearm.Rate))
ctysum_melt <- melt(ctysum, id='Year', value.name = 'Value')
names(ctysum_melt)[2] <- 'Crime.Type'
p3 <- ggplot(ctysum_melt, aes(x=Year, y=Value)) +
geom_line(aes(color=Crime.Type),size=1) +
ggtitle('Trend of Crime Rates in New York City') +
xlab('Year') +
ylab('Crime Rate (Incidents per 100,000 ppl)') +
theme_minimal()
p3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment