11

I have five groups of data and I want to test if their variance is significantly different or not. The data are normally distributed and I do not have any repeated measurements in any groups. What sort of analysis should I use?

Tukey's test compares the means, but how can I compare their variances?

For example I have 3 groups A, B and C. In groups A, B and C I have 30, 50 and 20 observations (which are stored as double-precision numeric variables in R).

gung - Reinstate Monica
  • 132,789
  • 81
  • 357
  • 650
user1436187
  • 523
  • 2
  • 4
  • 10

2 Answers2

11

To assess whether variance differs between groups, you need to use something like Levene's test or the Brown-Forsythe test. I discuss these in my answer here: Why Levene test of equality of variances rather than F ratio? You can perform these tests in R with ?leveneTest in the car package (which actually performs the B-F test by default).

gung - Reinstate Monica
  • 132,789
  • 81
  • 357
  • 650
0

Levene's test or the Brown Forsythe test is certainly appropriate, but if the data are normally distributed, I believe Bartlett's test might have greater statistical power. You may want to run a Bartlett test on the data and see if it comes up significant.

Mooncrater
  • 737
  • 2
  • 9
  • 19
Kevin
  • 41
  • 1