
Recodes the unique values of a variate using the value in position
i of the new.values
vector to replace the ith
sorted unique
values of x. The new levels do
not have to be unique.
num.recode(x, new.values)
A vector
.
The vector
to be recoded.
A vector
of length unique(x)
containing values to use in
the recoding.
Chris Brien
dae::fac.recast
.
## set up a factor with labels
x <- rep(c(-42, -14, 14, 42), 4)
## recode x
b <- num.recode(x, c(0, 28, 56, 84))
Run the code above in your browser using DataLab