LeveneTestLocationMeasure Enumeration

Enumerates the ways the central tendency of a sample is calculated in Levene's test.

Definition

Namespace: Extreme.Statistics.Tests
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public enum LeveneTestLocationMeasure

Remarks

Levene's test for homogeneity of variances assumes that the underlying populations of the samples have a normal distribution. A specific choice of measure for central tendency can make the test more robust when the data is not normal.

Members

Median0 The median is used. This is the default, and gives better results when the data is skewed.
TrimmedMean1 The 10% trimmed mean is used. This gives better results when the data is heavy-tailed.
Mean-1 The mean is used. This works best for normal data.

See Also