Guest User

Untitled

a guest
May 24th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. ggplot(data = results, mapping = aes(x = neighborhoods, y = med_svc_wait_times)) +
  2. geom_col(color = "#006EA1") +
  3. labs(title = "Median Time to Complete Service Requests in Baltimore City",
  4. x = "Neighborhood",
  5. y = "Median Time (Days)") +
  6. theme_light() + theme(axis.text.x = element_text(angle = 90, hjust = 1))
Add Comment
Please, Sign In to add comment