Skip to content

Instantly share code, notes, and snippets.

@stephlocke
Created March 24, 2018 20:22
Show Gist options
  • Save stephlocke/e11564fb45a57a5dfa50f25719ac7520 to your computer and use it in GitHub Desktop.
Save stephlocke/e11564fb45a57a5dfa50f25719ac7520 to your computer and use it in GitHub Desktop.
Steph blogged what?
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