pos_simple | R Documentation |
An R wrapper for Jagger's POS tagger (only returning POS)
pos_simple(
input,
model_path = NULL,
keep = NULL,
format = c("list", "data.frame")
)
input |
an input. |
model_path |
a path to the model. |
keep |
a vector of POS(s) to keep. Default is |
format |
a format of the output. Default is |
a list object.
data(sentence_example)
res_pos <- pos_simple(sentence_example$text)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.