SystemObject Extreme.Statistics.TestsHypothesisTest Extreme.Statistics.TestsMultiSampleTestT Extreme.Statistics.TestsBartlettTest Extreme.Statistics.TestsKruskalWallisTest Extreme.Statistics.TestsLeveneTest
Namespace:
Extreme.Statistics.Tests
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public abstract class MultiSampleTest<T> : HypothesisTest
Public MustInherit Class MultiSampleTest(Of T)
Inherits HypothesisTest
generic<typename T>
public ref class MultiSampleTest abstract : public HypothesisTest
[<AbstractClassAttribute>]
type MultiSampleTest<'T> =
class
inherit HypothesisTest
end
Type Parameters
- T
- The element type of the samples.
The MultiSampleTestT type exposes the following members.
| Name | Description |
---|
 | MultiSampleTestT(HypothesisType) |
Constructs a new MultiSampleTestT object.
|
 | MultiSampleTestT(IDataFrame, HypothesisType, Double, ContinuousDistribution) |
Constructs a new MultiSampleTestT object.
|
 | MultiSampleTestT(IEnumerableVectorT, HypothesisType, Double, ContinuousDistribution) |
Constructs a new MultiSampleTestT object.
|
 | MultiSampleTestT(VectorT, IGrouping, HypothesisType, Double, ContinuousDistribution) |
Constructs a new MultiSampleTestT object.
|
Top
Top
Top
Use the MultiSampleTestT class as a base class for
a statistical test based on multiple samples.
This class adds the Samples property, which is of type
IDataFrame, and can be used to retrieve, add, and remove
the collection of samples.
This is an abstract base class and cannot be instantiated directly.
Note to inheritors: You must override CalculateStatistic.
You must also set the Distribution property,
either in the constructor or in your CalculateStatistic implementation.
If applicable, you should override GetConfidenceInterval.
Reference