SystemObject Extreme.Statistics.TestsHypothesisTest Extreme.Statistics.TestsTwoSampleTestT Extreme.Statistics.TestsMannWhitneyTestT Extreme.Statistics.TestsTwoSampleTest
Namespace:
Extreme.Statistics.Tests
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public abstract class TwoSampleTest<T> : HypothesisTest
Public MustInherit Class TwoSampleTest(Of T)
Inherits HypothesisTest
generic<typename T>
public ref class TwoSampleTest abstract : public HypothesisTest
[<AbstractClassAttribute>]
type TwoSampleTest<'T> =
class
inherit HypothesisTest
end
Type Parameters
- T
- The element type of the samples.
The TwoSampleTestT type exposes the following members.
Top
Top
Top
Use the TwoSampleTestT class as a base class for a statistical test based on two samples.
This class adds the Sample1 and Sample2 properties,
which can be used to get or set the samples.
It also provides a constructor that allows this property to be set at the time of construction.
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(Double).
Reference