Learn R Programming

expss (version 0.11.6)

values2labels: Replace vector/matrix/data.frame/list values with corresponding value labels.

Description

values2labels replaces vector/matrix/data.frame/list values with corresponding value labels. If there are no labels for some values they are converted to characters in most cases. If there are no labels at all for variable it remains unchanged. v2l is just shortcut to values2labels.

Usage

values2labels(x)

v2l(x)

Value

Object of the same form as x but with value labels instead of values.

Arguments

x

vector/matrix/data.frame/list

See Also

names2labels, val_lab, var_lab

Examples

Run this code
data(mtcars)
var_lab(mtcars$mpg) = NULL
val_lab(mtcars$am) = c(" automatic" = 0, " manual" =  1)

summary(lm(mpg ~ ., data = values2labels(mtcars[,c("mpg","am")])))

Run the code above in your browser using DataLab