powered by
Reassigning values of categorical variable. It is used for generating legal value of categorical variable before applying dynamic slicing.
relabel(x)
An integer vector with values range from 0 to k (k > 0).
A vector of data values.
ds_test.
ds_test
n <- 10 x <- c(rep("G1", n), rep("G2", n)) x <- relabel(x) x <- c(rep(4, n), rep(5, n), rep(NA, n)) x <- relabel(x)
Run the code above in your browser using DataLab