Learn R Programming

lmSupport (version 2.9.13)

varRecode: Recode levels of variable

Description

Recodes levels of variable from old values to new values. Levels in Old are recoded to levels in New by matching position in these two vectors.

Usage

varRecode(Var, Old, New)

Arguments

Var

A variable to recode.

Old

Vector with original levels of Var

New

vector with new levels

Value

Returns variable with new levels

See Also

recode

Examples

Run this code
# NOT RUN {
##d$rIV1 = varRecode(d$IV1, c(-1,1), c(-.5, .5))
##d$rIV2 = varRecode(d$IV2, c(1,2,3), c(-.667, .333, .333))
##d$rIV3 = varRecode(d$IV3, c('A', 'B'), c('C', 'D'))
# }

Run the code above in your browser using DataLab