Learn R Programming

tipitaka (version 0.1.2)

pali_stop_words: 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

Arguments

Format

An object of class tbl_df (inherits from tbl, data.frame) with 245 rows and 1 columns.

Examples

Run this code
# 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