C# Class Accord.Statistics.Testing.LeveneTest

Inheritance: Accord.Statistics.Testing.FTest
Show file Open project: accord-net/framework Class Usage Examples

Public Methods

Method Description
LeveneTest ( double samples, bool median = false ) : System

Tests the null hypothesis that all group variances are equal.

LeveneTest ( double samples, double percent ) : System

Tests the null hypothesis that all group variances are equal.

Private Methods

Method Description
compute ( double samples, LeveneTestMethod method, double percent ) : void

Method Details

LeveneTest() public method

Tests the null hypothesis that all group variances are equal.
public LeveneTest ( double samples, bool median = false ) : System
samples double The grouped samples.
median bool True to use the median in the Levene calculation. /// False to use the mean. Default is false (use the mean).
return System

LeveneTest() public method

Tests the null hypothesis that all group variances are equal.
public LeveneTest ( double samples, double percent ) : System
samples double The grouped samples.
percent double The percentage of observations to discard /// from the sample when computing the test with the truncated mean.
return System