Created
March 24, 2018 20:22
-
-
Save stephlocke/e11564fb45a57a5dfa50f25719ac7520 to your computer and use it in GitHub Desktop.
Steph blogged what?
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
if(!require(locketweet)) | |
devtools::install_github("lockedata/locketweet") | |
library(tidyverse) | |
library(locketweet) | |
locketweet::lockedata_blog %>% | |
filter(date.x >= as.Date("2016-10-01"), | |
coalesce(tolower(author), "steph") == | |
"steph") %>% | |
select(starts_with("cat_")) %>% | |
gather(topic, value, na.rm = TRUE) %>% | |
count(topic) %>% | |
arrange(desc(n)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment