我正在尝试为我的两个类别变量和一个数字变量运行MCA。但是,我不断得到这个: 警告其中(unlist(lapply(listModa,is.numeric)))的错误: “哪个”的参数不合逻辑
我的数据如下:
head(MPaleo [,1:3],3)
Life.Habit ln.Mass..g. Diet
1 scansorial 5.20 insectivore
2 ground dwelling 2.84 insectivore
3 arboreal 4.01 omnivore
我添加了定性补充和定性补充:
#To choose the columns used in the data set
NAPaleo[,c("ln.Mass..g.", "Life.Habit", "Diet")]
#Will not run and gives me the warning
**res.mca <- MCA(MPaleo, quanti.sup =2, quali.sup = c(1,3))**
有人有使用MCA的经验,并且了解为什么它不会运行吗?我认为它可能希望以某种方式设置我的数据,但我不确定。 谢谢!