Skip to content

Instantly share code, notes, and snippets.

@alq666
Created December 10, 2012 22:30
Show Gist options
  • Save alq666/4253939 to your computer and use it in GitHub Desktop.
Save alq666/4253939 to your computer and use it in GitHub Desktop.
Alerting Trends
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