# NOT RUN {
# Find most common words in the Mah<U+0101>satipatth<U+0101>na Sutta excluding stop words
library(dplyr)
sati_sutta_long %>%
anti_join(pali_stop_words, by = "word") %>%
arrange(desc(freq))
# }
Run the code above in your browser using DataLab