TransWikia.com

Seeking Explanation of how this ANCOVA result in R shows the group means are not equal

Cross Validated Asked by Kyle on October 13, 2020

I am looking for an explanation as to how the ANCOVA results, below, show that the means of the groups defined by IndVar1 and IndVar2 are not equal, after accounting for the covariate, Covar.

I think the answer is that the intercept is adjusted (due to the covariate), and the p-values of IndVar1 and IndVar2 are still significant (p < 0.05).

-Model_1 includes the covariate, Covar. Model_2 does not (included for reference).
-DependentVar and Covar are continuous variables.
-IndVar1 and IndVar2 are categorical.
-The assumptions of ANCOVA for this test are met.
-Covar is significant when it is the only variable in the model.
-The interaction of IndVar1 and IndVar2 is not significant, so it’s not included.

> Model_1 <- aov(DependentVar ~ IndVar1 + IndVar2 + Covar, data = Dataset)
> Model_1 <- Anova(Model_1, type = "III")
> Model_1
Anova Table (Type III tests)

Response: DependentVar
                  Sum Sq   Df   F value    Pr(>F)    
(Intercept)      8335.0    1     6244.6   < 2.2e-16 ***
IndVar1            18.5    5        2.7     0.029 *  
IndVar2            49.2    5        6.5     7.821e-06 ***
Covar               2.9    1        1.8     0.18360    
Residuals       2075.2  1250                        
 
> Model_2 <- aov(DependentVar ~ IndVar1 + IndVar2, data = Dataset)
> Model_2 <- Anova(Model_2, type = "III")
> Model_2
Anova Table (Type III tests)

Response: DependentVar
               Sum Sq   Df   F value    Pr(>F)    
(Intercept)  12235.4    1      7310.5   < 2.2e-16 ***
IndVar1         16.4    5         2.8     0.04549 *  
IndVar2         49.6    5         6.9     3.7e-06 ***
Residuals     2099.2  1251                        

2 Answers

The answer is as I suspected. The intercepts are adjusted due to the covariate, and if one of the p-values of the two grouping variables is significant, then the adjusted means of all of the groups are not equal.

Answered by Kyle on October 13, 2020

I may be misunderstanding what you're asking here, so please clarify if I have misread something. As currently written, my understanding is that you have a factor, IndVar1, with some number of levels and another factor, IndVar2, with also some number of levels. Your question is then how the results from the ANCOVA would show that the means of at least one level of the IndVar1 factor differ from the means of at least one level of the IndVar2 factor.

If that is correct, then you need to include an interaction term in the model. Right now, the ANOVA table just shows that there is at least one mean difference within the factors. So, say that IndVar1 has 3 levels. These results tell you that there is at least one of those levels that is significantly different from the other two. So, you know that IndVar1 and IndVar2 both have significant main effects even after controlling for some other variable (i.e., Covar).

Running the following code instead will add the interaction term and let you know more about how the independent variables relate to one another:

Model_1 <- aov(DependentVar ~ IndVar1 + IndVar2 + IndVar1:Indvar2 + Covar, data = Dataset)

and just to be complete, a slightly more parsimonious way of running the two-way ANCOVA would be like this:

Model_1 <- aov(DependentVar ~ IndVar1*IndVar2 + Covar, data = Dataset)

Answered by Billy on October 13, 2020

Add your own answers!

Ask a Question

Get help from others!

© 2024 TransWikia.com. All rights reserved. Sites we Love: PCI Database, UKBizDB, Menu Kuliner, Sharing RPP