|
LeveneTest Constructor (Double, Boolean)
|
Tests the null hypothesis that all group variances are equal.
Namespace:
Accord.Statistics.Testing
Assembly:
Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntax public LeveneTest(
double[][] samples,
bool median = false
)
Public Sub New (
samples As Double()(),
Optional median As Boolean = false
)
Request Example
View SourceParameters
- samples
- Type: SystemDouble
The grouped samples. - median (Optional)
- Type: SystemBoolean
True to use the median in the Levene calculation.
False to use the mean. Default is false (use the mean).
See Also