An R wrapper for Jagger's POS tagger (only returning POS)
pos_simple(
input,
model_path = NULL,
keep = NULL,
format = c("list", "data.frame")
)
an input.
a path to the model.
a vector of POS(s) to keep. Default is NULL
.
a format of the output. Default is list
.
a list object.
data(sentence_example)
res_pos <- pos_simple(sentence_example$text)