Get a tidy data frame of a single stopword lexicon
Get a specific stop word lexicon via the stopwords package's stopwords function, in a tidy format with one word per row.
get_stopwords(language = "en", source = "snowball")
language |
The language of the stopword lexicon specified as a
two-letter ISO code, such as |
source |
The source of the stopword lexicon specified. Default is
|
A tibble with two columns, word
and lexicon
. The
parameter lexicon
is "quanteda" in this case.
library(dplyr) get_stopwords() get_stopwords(source = "smart") get_stopwords("es", "snowball") get_stopwords("ru", "snowball")
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.