stem_words {textstem} | R Documentation |
Stem a vector of words.
stem_words(x, language = "porter", ...)
x |
A vector of words. |
language |
The name of a recognized language (see
|
... |
ignored. |
Returns a vector of stemmed words.
x <- c("the", 'doggies', ',', 'well', 'they', "aren\'t", 'Joyfully', 'running', '.')
stem_words(x)