Skip to content

Instantly share code, notes, and snippets.

@romainfrancois
Created December 25, 2017 23:32
Show Gist options
  • Save romainfrancois/c479dd937878d4e3f7c836a8084cf5fa to your computer and use it in GitHub Desktop.
Save romainfrancois/c479dd937878d4e3f7c836a8084cf5fa to your computer and use it in GitHub Desktop.
library(tidyverse)
library(rtweet)
library(glue)
get_timeline("LucyStats", n = 100) %>%
pull(text) %>%
str_extract_all( emo::ji_rx ) %>%
flatten_chr() %>%
table() %>%
enframe() %>%
arrange( desc(value) ) %>%
filter( value > 5 ) %$%
cat( name )
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment