txt_recode {udpipe} | R Documentation |
Recode text to other categories
Description
Recode text to other categories.
Values of x
which correspond to from[i]
will be recoded to to[i]
Usage
txt_recode(x, from = c(), to = c(), na.rm = FALSE)
Arguments
x |
a character vector |
from |
a character vector with values of |
to |
a character vector with values of you want to use to recode to where you
want to replace values of |
na.rm |
logical, if set to TRUE, will put all values of |
Value
a character vector of the same length of x
where values of x
which are given in from
will be replaced by the corresponding element in to
See Also
Examples
x <- c("NOUN", "VERB", "NOUN", "ADV")
txt_recode(x = x,
from = c("VERB", "ADV"),
to = c("conjugated verb", "adverb"))
txt_recode(x = x,
from = c("VERB", "ADV"),
to = c("conjugated verb", "adverb"),
na.rm = TRUE)
txt_recode(x = x,
from = c("VERB", "ADV", "NOUN"),
to = c("conjugated verb", "adverb", "noun"),
na.rm = TRUE)
[Package udpipe version 0.8.11 Index]