R中的MCA-其中(unlist(lapply(listModa,is.numeric)))的错误:'which'的参数不符合逻辑

时间:2018-11-12 20:08:29

标签: r

我正在尝试为我的两个类别变量和一个数字变量运行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的经验,并且了解为什么它不会运行吗?我认为它可能希望以某种方式设置我的数据,但我不确定。 谢谢!

0 个答案:

没有答案