The Brown-Forsyth test for homogeneity of variance is included in
the HH package, downloadable from CRAN.
library(HH)
x <- c(rnorm(1000), rnorm(1000, 0, 1.2))
tmp <- data.frame(x=x, group=rep(c("s1","s1.2"), c(1000,1000)))
plot.hov(x ~ group, data=tmp)
hov(x ~ group, data=tmp)
______________________________________________
[email protected] mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.