Represents a non-parametric test that two samples are from the same distribution.
SystemObject Extreme.Statistics.TestsHypothesisTest Extreme.Statistics.TestsTwoSampleTestT Extreme.Statistics.TestsMannWhitneyTestT
Namespace:
Extreme.Statistics.Tests
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public sealed class MannWhitneyTest<T> : TwoSampleTest<T>
Public NotInheritable Class MannWhitneyTest(Of T)
Inherits TwoSampleTest(Of T)
generic<typename T>
public ref class MannWhitneyTest sealed : public TwoSampleTest<T>
[<SealedAttribute>]
type MannWhitneyTest<'T> =
class
inherit TwoSampleTest<'T>
end
Type Parameters
- T
- The element type of the samples.
The MannWhitneyTestT type exposes the following members.
Top
Top
Top
Use the MannWhitneyTestT class to test the hypothesis that two samples are
drawn from the same distribution. The test uses the ranks in the combined sample.
No assumptions are made about the distribution.
The test is also known as the Mann-Whitney-Wilcoxon test or the Wilcoxon rank-sum test.
For smaller sample sizes, an exact test is used under the assumption that there are no ties.
For larger sample sizes (greater than 80), or when ties are present,
the sampling distribution of the Mann-Whitney statistic
is approximated by a normal distribution with a correction for tied values.
This behavior can be overriden through the Exactness property.
Reference