Answers for "r how to make numeric to categorical variable"

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 "r how to make numeric to categorical variable"

Browse Popular Code Answers by Language