diff --git a/05-document-term-matrices.Rmd b/05-document-term-matrices.Rmd index 7b6fabe0..f531d5ab 100644 --- a/05-document-term-matrices.Rmd +++ b/05-document-term-matrices.Rmd @@ -79,7 +79,6 @@ library(ggplot2) ap_sentiments %>% count(sentiment, term, wt = count) %>% - ungroup() %>% filter(n >= 200) %>% mutate(n = ifelse(sentiment == "negative", -n, n)) %>% mutate(term = reorder(term, n)) %>%