Skip to content

Commit

Permalink
Update 05-document-term-matrices.Rmd (#114)
Browse files Browse the repository at this point in the history
no need for ungrouping
  • Loading branch information
devpowerplatform authored Aug 13, 2024
1 parent 12a6367 commit 2e3ce15
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion 05-document-term-matrices.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -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)) %>%
Expand Down

0 comments on commit 2e3ce15

Please sign in to comment.