Created
December 25, 2017 23:32
-
-
Save romainfrancois/c479dd937878d4e3f7c836a8084cf5fa 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(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