powered by
Build a list of means and standard deviation for each cols.
cols
build_scales(data_set, cols = "auto", verbose = TRUE)
A list where each element name is a column name of data set and each element contains means and sd.
Matrix, data.frame or data.table
List of numeric column(s) name(s) of data_set to transform. To transform all characters, set it to "auto". (character, default to "auto")
Should the algorithm talk? (Logical, default to TRUE)
# Get a data set data(adult) scales <- build_scales(adult, cols = "auto", verbose = TRUE) print(scales)
Run the code above in your browser using DataLab