Anova Model.Get Homogeneity Of Variances Test Method
Definition
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
Overload List
Get | Returns a test to verify that the cells have the same variance. |
Get | Returns a test to verify that the cells have the same variance. |
GetHomogeneityOfVariancesTest
public MultiSampleTest<double> GetHomogeneityOfVariancesTest()
Return Value
MultiSampleTest<Double>A MultiSampleTest<T> object.
Remarks
Analysis of Variance assumes that the data in each cell, corresponding to each factor or combination of factors, have the same variance. Use this method to obtain a statistical test object that can be used to verify this assumption.
By default, Levene's test is used.
GetHomogeneityOfVariancesTest(TestOfHomogeneityOfVariances)
public virtual MultiSampleTest<double> GetHomogeneityOfVariancesTest(
TestOfHomogeneityOfVariances test
)
Parameters
- test TestOfHomogeneityOfVariances
- A TestOfHomogeneityOfVariances value that specifies the test to use.
Return Value
MultiSampleTest<Double>A MultiSampleTest<T> object.
Remarks
Analysis of Variance assumes that the data in each cell, corresponding to each factor or combination of factors, have the same variance. Use this method to obtain a statistical test object that can be used to verify this assumption.
Exceptions
ArgumentOutOfRangeException | test has an illegal value. |