lemmatize | R Documentation |
An R wrapper for Jagger's lemmatizer
lemmatize(input, model_path = NULL, keep = NULL, concat = TRUE)
input |
an input. |
model_path |
a path to the model. |
keep |
a vector of POS(s) to keep. Default is |
concat |
logical. If TRUE, the function returns a concatenated string. Default is |
a vector (if concat = TRUE
) or a list (if concat = FALSE
).
data(sentence_example)
res_lemmatize <- lemmatize(sentence_example$text)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.