Last chance! 50% off unlimited learning
Sale ends in
Title
makeScales(data, scales, append = TRUE)
Either a dataframe with the newly created variables, or the supplied dataframe with the newly created variables appended.
The dataframe containing the variables (the items).
A list of character vectors with the items in each scale, where each vectors' name is the name of the scale.
Whether to return the dataframe including the new variables
(TRUE
), or a dataframe with only those new variables (FALSE
).
### First generate a list with the scales
scales <- list(scale1 = c('mpg', 'cyl'), scale2 = c('disp', 'hp'));
### Create the scales and add them to the dataframe
makeScales(mtcars, scales);
Run the code above in your browser using DataLab