Enumerates the possible ways to relate two samples in a two sample hypothesis test.
Namespace: Extreme.Statistics.Tests
Assembly: Extreme.Numerics (Extreme.Numerics)
Syntax
| Visual Basic (Declaration) |
|---|
Public Enumeration SamplePairing |
| C# |
|---|
public enum SamplePairing |
| C++ |
|---|
public enum class SamplePairing |
Members
| Member | Description |
|---|---|
| Unpaired |
The two samples are independent.
|
| Paired |
The two samples are paired. Each observation in the first sample
has a corresponding observation in the second sample.
|
Remarks
This type enumerates the possible values for the
Pairing property of the TwoSampleTTest
class.