Created
December 10, 2012 22:30
-
-
Save alq666/4253939 to your computer and use it in GitHub Desktop.
Alerting Trends
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
alerts_by_day <- read.csv(‘by_day.csv’) | |
ggplot(alerts_by_day, aes(day_of_year, daily, color=factor(notifying))) + geom_line() | |
+ xlab("Day of year") | |
+ ylab("Service Alerts") | |
+ ggtitle("Notifying v. silent alerts per day") | |
+ geom_smooth() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment