| Library: | stats |
| See also: | anova |
| Quantlet: | levene | |
| Description: | levene runs Levene-test |
| Usage: | out=levene(datain) | |
| Input: | ||
| datain | n x p data set | |
| Output: | ||
| out | text output (string array) | |
library("stats")
x=read("gas.dat")
levene(x)
[1,] "-------------------------------------------------" [2,] "Levene Test for Homogenity of Variances " [3,] "-------------------------------------------------" [4,] " Statistic df1 df2 Signif. " [5,] " 0.7385 4 15 0.5802 "