powered by
Dichotomizes the variables in a data frame exclusively composed of categorical variables
dichotom(data, out = "numeric")
Returns a data frame with dichotomized variables. The number of columns is equal to the total number of categories in the input data.
data frame of categorical variables
character string defining the format for dichotomized variables in the output data frame. Format may be 'numeric' or 'factor' (default is 'numeric').
Nicolas Robette, Julien Barnier
## Dichotomizes 'Music' example data frame data(Music) dic <- dichotom(Music[,1:5]) str(dic) ## with output variables in factor format dic <- dichotom(Music[,1:5], out='factor') str(dic)
Run the code above in your browser using DataLab