| pali_stop_words {tipitaka} | R Documentation | 
Tentative set of "stop words" for Pali
Description
A list of all declinables and particles from the PTS Pali-English Dictionary.
Usage
pali_stop_words
Format
An object of class tbl_df (inherits from tbl, data.frame) with 245 rows and 1 columns.
Source
https://dsalsrv04.uchicago.edu/dictionaries/pali/
Examples
# 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))
[Package tipitaka version 0.1.2 Index]