public class Levene extends HypothesisTest
The R equivalent function is levene.test.
| Modifier and Type | Class and Description |
|---|---|
static class |
Levene.Type
the implementations available when computing the absolute deviations
|
| Modifier and Type | Field and Description |
|---|---|
double |
df1
the degree of freedoms
|
double |
df2
the degree of freedoms
|
k, N, pValue, testStatistics| Constructor and Description |
|---|
Levene(double... samples)
Perform the Levene test to test for homeogeneity of variance across groups.
|
Levene(Levene.Type type,
double[]... samples)
Perform the Levene test to test for homeogeneity of variance across groups.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getAlternativeHypothesis()
Get a description of the alternative hypothesis.
|
java.lang.String |
getNullHypothesis()
Get a description of the null hypothesis.
|
isNullRejected, oneSidedPvalue, pValue, statisticspublic final double df1
public final double df2
public Levene(double... samples)
The absolute deviations are computed from the medians.
samples - samplespublic Levene(Levene.Type type, double[]... samples)
type - the implementation chosensamples - samplespublic java.lang.String getNullHypothesis()
HypothesisTestgetNullHypothesis in class HypothesisTestpublic java.lang.String getAlternativeHypothesis()
HypothesisTestgetAlternativeHypothesis in class HypothesisTest