BookmarkSubscribeRSS Feed
palolix
Obsidian | Level 7

How can I test homogeneity of variances to my ANOVA model when having more than 1 factor, using Levene for example?

Thank you very much!

Caroline

2 REPLIES 2
SteveDenham
Jade | Level 19

One way is to test a means model in PROC GLM, something like:

proc glm data=yourdata;

class factor1 factor2 factor3;

model response=factor1*factor2*factor3;

means factor1*factor2*factor3/hovtest=bf;

run;

This does Brown and Forsythe's version of Levene's test--testing at the finest granularity in your data.

Another possibility is in PROC GLIMMIX.  See example 41.9 Testing Equality of Covariance and Correlation Matrices in the documentation.  The likelihood ratio test is closer to a Bartlett's test than Levene's.

Steve Denham

palolix
Obsidian | Level 7

Thank you very much for your help Steve!!

Caroline

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

Register now!

What is ANOVA?

ANOVA, or Analysis Of Variance, is used to compare the averages or means of two or more populations to better understand how they differ. Watch this tutorial for more.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 2 replies
  • 1406 views
  • 0 likes
  • 2 in conversation