Returns a test to verify that the cells have the same variance.

Namespace: Extreme.Statistics
Assembly: Extreme.Numerics (Extreme.Numerics)

Syntax

Visual Basic (Declaration)
Public Overridable Function GetHomogeneityOfVariancesTest ( _
	test As TestOfHomogeneityOfVariances _
) As MultiSampleTest
C#
public virtual MultiSampleTest GetHomogeneityOfVariancesTest (
	TestOfHomogeneityOfVariances test
)
C++
public:
virtual MultiSampleTest^ GetHomogeneityOfVariancesTest (
	TestOfHomogeneityOfVariances test
)

Parameters

test (Extreme.Statistics.TestOfHomogeneityOfVariances)
A TestOfHomogeneityOfVariances value that specifies the test to use.

Return Value

A MultiSampleTest 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

ExceptionCondition
ArgumentOutOfRangeExceptiontest has an illegal value.

See Also