Represents Bartlett's test that a set of samples have the same variance.
SystemObject Extreme.Statistics.TestsHypothesisTest Extreme.Statistics.TestsMultiSampleTestDouble Extreme.Statistics.TestsBartlettTest
Namespace:
Extreme.Statistics.Tests
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public sealed class BartlettTest : MultiSampleTest<double>
Public NotInheritable Class BartlettTest
Inherits MultiSampleTest(Of Double)
public ref class BartlettTest sealed : public MultiSampleTest<double>
[<SealedAttribute>]
type BartlettTest =
class
inherit MultiSampleTest<float>
end
The BartlettTest type exposes the following members.
Top
Top
Top
Use the BartlettTest class to test the hypothesis that a number of samples have the
same variance. This property is called homogeneity of variance.
Some statistical procedures, such as the Analysis of Variance,
assume that variances are the same across groups.
Bartlett's test is a relatively fast test for homogeneity of variances.
The test is based on the assumption that the samples are normally distributed.
It is sensitive to violations of this assumption. In practical terms,
this means that Bartlett's test cannot adequately distinguish
between violation of homogeneity of variances and violation of the normality assumption.
In such a case, Levene's test gives more meaningful results.
Reference