Error in vcov.default(mod) : there is no vcov() method for models of class list (changing from type I to type III Sum of Squares)

◇◆丶佛笑我妖孽 提交于 2019-12-24 19:16:47

问题


I am trying to get an ANOVA table for my split-split plot design where it will use type III Sum sq instead of type I. This is what I have done so far;

> Attach(Data)
> library(car)
> options(contrasts = c("contr.sum", "contr.poly"))
> mod <- aov(Response ~ A*B*C + Error(Block/A/B/C))
> Anova(mod, type='III')
Error in vcov.default(mod) :
     there is no vcov() method for models of class aovlist, listof

I don't understand why I keep getting this error message, or what to do about it.

Any help trying to get around this error message would be greatly appreciated. Thanks in advance!

来源:https://stackoverflow.com/questions/47440031/error-in-vcov-defaultmod-there-is-no-vcov-method-for-models-of-class-list

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