MANCOVA: differences between jamovi, R, and SPSS
Posted: Mon Oct 24, 2022 6:37 pm
Hi everyone,
I have conducted a MANCOVA analysis using 4 DVs, 1 IV (of 3 groups), and 4 covariates. The overall result of the IV effect that I get on jamovi is F(8,1220) = 3.34, Wilk’s Λ = .958, p < .001.
However, a student decided to run the same analysis on SPSS and her result was different. The overall MANCOVA IV effect was F(8,1220) = 0.836, Wilk’s Λ = .989, p = .571. So the interpretation here is the opposite.
I talked with a statistician who decided to run this on R. She got the same result as jamovi and SPSS, depending on the order of the variables! Her two models were something like this:
1) result1 <- manova(cbind(DV1, DV2, DV3, DV4) ~ CoV1 + CoV2 + IV, data= FileName)
summary (results)
2) result1 <- manova(cbind(DV1, DV2, DV3, DV4) ~ IV + CoV1 + CoV2, data= FileName)
summary (results)
*IV = independent variable, DV = Dependent variables, CoV = Covariates
The first code uses covariates in front of the IV, and the second code uses the IV before the covariates, that is the only difference. However, the first code gives the results of SPSS and the second code give the result of jamovi. Why are we observing this difference? What is the correct result?
Thank you in advance for your help.
I have conducted a MANCOVA analysis using 4 DVs, 1 IV (of 3 groups), and 4 covariates. The overall result of the IV effect that I get on jamovi is F(8,1220) = 3.34, Wilk’s Λ = .958, p < .001.
However, a student decided to run the same analysis on SPSS and her result was different. The overall MANCOVA IV effect was F(8,1220) = 0.836, Wilk’s Λ = .989, p = .571. So the interpretation here is the opposite.
I talked with a statistician who decided to run this on R. She got the same result as jamovi and SPSS, depending on the order of the variables! Her two models were something like this:
1) result1 <- manova(cbind(DV1, DV2, DV3, DV4) ~ CoV1 + CoV2 + IV, data= FileName)
summary (results)
2) result1 <- manova(cbind(DV1, DV2, DV3, DV4) ~ IV + CoV1 + CoV2, data= FileName)
summary (results)
*IV = independent variable, DV = Dependent variables, CoV = Covariates
The first code uses covariates in front of the IV, and the second code uses the IV before the covariates, that is the only difference. However, the first code gives the results of SPSS and the second code give the result of jamovi. Why are we observing this difference? What is the correct result?
Thank you in advance for your help.