Last active
November 15, 2017 12:12
-
-
Save seabbs/fcca5387d2dd9fbd785a226549bae7b0 to your computer and use it in GitHub Desktop.
Plot the annual percentage decrease in TB notifications
This file contains 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
nots %>% ggplot(aes(x = year, y = prop_decrease, col = prop_decrease)) + | |
geom_hline(yintercept = 0, linetype = 1, alpha = 0.5) + | |
geom_hline(yintercept = 0.09, linetype = 2, alpha = 0.5) + | |
geom_point(size = 2) + | |
scale_y_percent() + | |
geom_smooth(alpha = 0.2) + | |
scale_colour_viridis_c() + | |
theme_minimal() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment