Created
September 26, 2017 12:54
-
-
Save aammd/f596d41f02739aeffa00681f6669a0e8 to your computer and use it in GitHub Desktop.
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
library(pageviews) | |
require(lubridate) | |
today <- pageview_timestamps() | |
earlysept <- pageview_timestamps(lubridate::ymd("2017-09-01")) | |
korsmit <- pageviews::article_pageviews("en.wikipedia", "Roy_Kortsmit", start = earlysept, end = today) | |
korsmit %>% | |
ggplot(aes(x = date, y = views)) + theme_minimal() + geom_line() + geom_point() + | |
labs(title = "Roy Kortsmit wikipedia pageviews", subtitle = "Before and after he made 4 saves in 5s.") | |
ggsave("~/Desktop/goalie.png") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment