pali_stop_words {tipitaka} | R Documentation |
A list of all declinables and particles from the PTS Pali-English Dictionary.
pali_stop_words
An object of class tbl_df
(inherits from tbl
, data.frame
) with 245 rows and 1 columns.
https://dsalsrv04.uchicago.edu/dictionaries/pali/
# Find most common words in the Mahāsatipatthāna Sutta excluding stop words
library(dplyr)
sati_sutta_long %>%
anti_join(pali_stop_words, by = "word") %>%
arrange(desc(freq))