Description Usage Arguments Details Value Author(s) Examples
Adds value labels to a variable.
1 | add.value.labels(x,value.labels)
|
x |
The variable to add the labels. |
value.labels |
The labels. |
add.value.labels adds value labels like those from an SPSS .sav file. It makes it a bit easier to stick on value labels that have been lost or were not there in the first place.
The variable with the labels added.
Jim Lemon
1 2 3 | fgh<-data.frame(sex=sample(1:2,20,TRUE),viviality=sample(1:3,20,TRUE))
fgh$sex<-add.value.labels(fgh$sex,c("Female","Male"))
fgh$viviality<-add.value.labels(fgh$viviality,c("Alive","Dead","Zombie"))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.