get_stopwords | R Documentation |
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")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.