pali_stop_words: Tentative set of "stop words" for Pali

Description Usage Format Source Examples

Description

A list of all declinables and particles from the PTS Pali-English Dictionary.

Usage

1

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

1
2
3
4
5
# 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))

tipitaka documentation built on March 30, 2021, 5:12 p.m.