R/lemmatizer.R
lemmatize_tbl.Rd
An R wrapper for Jagger's lemmatizer (a tibble input)
lemmatize_tbl(tbl, column, model_path = NULL, keep = NULL)
a tibble object.
a column name of the tibble to tokenize.
a path to the model.
a vector of POS(s) to keep. Default is NULL.
NULL
a tibble.
data(sentence_example) res_lemmatize <- lemmatize_tbl(tibble::as_tibble(sentence_example), "text")