lemmatize_tbl {RcppJagger} | R Documentation |
An R wrapper for Jagger's lemmatizer (a tibble input)
Description
An R wrapper for Jagger's lemmatizer (a tibble input)
Usage
lemmatize_tbl(tbl, column, model_path = NULL, keep = NULL)
Arguments
tbl |
a tibble object. |
column |
a column name of the tibble to tokenize. |
model_path |
a path to the model. |
keep |
a vector of POS(s) to keep. Default is |
Value
a tibble.
Examples
data(sentence_example)
res_lemmatize <- lemmatize_tbl(tibble::as_tibble(sentence_example), "text")
[Package RcppJagger version 0.0.2 Index]