我想用R中的3个协变量进行ANCOVA。我要使用“汽车”软件包进行Levene检验,以检验方差的均质性假设。
library(car)
leveneTest(Daten$DependentVariable,
interaction(Daten$firstCovariate, Daten$secondCovariate, Daten$thirdCovariate, Daten$GroupingVariable),
center=median)
结果如下,没有显着性值:
Levenes Test for Homogeneity of Variance (center = mean)
Df F value Pr(>F)
group 133
0
我的协变量都是数字。如果我忽略了firstCovariate
(这是参与者的天数),则会显示结果。您有什么想法,这个协变量可能是什么问题?