tokenize {RcppJagger} | R Documentation |
An R wrapper for Jagger's tokenizer
Description
An R wrapper for Jagger's tokenizer
Usage
tokenize(input, model_path = NULL, keep = NULL, concat = TRUE)
Arguments
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 |
Value
a vector (if concat = TRUE
) or a list (if concat = FALSE
).
Examples
data(sentence_example)
res_tokenize <- tokenize(sentence_example$text)
[Package RcppJagger version 0.0.2 Index]