Answers for "converting categorical columns to numeric r"

R
0

how to convert categorical data to numerical data in r

Type_peau<-as.factor(c("Mixte","Normale","Sèche","Mixte","Normale","Mixte"))
Type_peau
unclass(Type_peau)
Posted by: Guest on April-10-2020

Code answers related to "converting categorical columns to numeric r"

Browse Popular Code Answers by Language