powered by
Categorical mapping provides a way to map the levels of a categorical variable to new values. Each possible value is converted to a binary attribute.
categ_mapping(attribute)
returns a data frame with binary attributes, one for each possible category.
attribute to be categorized.
cm <- categ_mapping("Species") iris_cm <- transform(cm, iris) # can be made in a single column species <- iris[,"Species", drop=FALSE] iris_cm <- transform(cm, species)
Run the code above in your browser using DataLab