24.3 Stop words and Frequencies
tidy_books %>%
count(word, sort = TRUE)
## # A tibble: 14,520 x 2
## word n
## <chr> <int>
## 1 the 26351
## 2 to 24044
## 3 and 22515
## 4 of 21178
## 5 a 13408
## 6 her 13055
## 7 i 12006
## 8 in 11217
## 9 was 11204
## 10 it 10234
## # ... with 14,510 more rows