Click or drag to resize

SampleMannWhitneyTest Method

Tests whether one sample median is compatible with another sample median.

Namespace:  Meta.Numerics.Statistics
Assembly:  Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax
public static TestResult MannWhitneyTest(
	Sample a,
	Sample b
)

Parameters

a
Type: Meta.Numerics.StatisticsSample
The fisrt sample.
b
Type: Meta.Numerics.StatisticsSample
The second sample.

Return Value

Type: TestResult
The result of the test. The statistic is the Mann-Whitney U value and the probability is the chance of obtaining such an extreme value of U if the two samples are drawn from the same distribution.
Remarks

The Mann-Whitney test is a non-parametric alternative to Student's t-test (StudentTTest(Sample, Sample)). Essentially, it supposes that the medians of the two samples are equal and tests the likelihood of this null hypothesis. Unlike the t-test, it does not assume that the sample distributions are normal.

See Also