How to conduct a MANCOVA

生来就可爱ヽ(ⅴ<●) 提交于 2019-12-24 11:05:43

问题


I am trying to perform a mancova in R. However, I have tried the jmv package:

x<-cbind('total.c','total.p') #dependent
y<-cbind('Treatment','Sex', 'Species', 'Location') #independent
mancova(intake, deps=x,factors=y, covs=c("Ghopper.Start..g."))

which gives me the following error:

Error: Table$setRow(): value 'stat[pillai]' is not atomic

When I remove one of the independent variables, the function works with no problems. So I am suspecting its a memory limitation,, but what actually is going wrong here?

来源:https://stackoverflow.com/questions/51867223/how-to-conduct-a-mancova

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!