Click or drag to resize
Accord.NET (logo)

MannWhitneyWilcoxonTest Constructor

Tests whether two samples comes from the same distribution without assuming normality.

Namespace:  Accord.Statistics.Testing
Assembly:  Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntax
public MannWhitneyWilcoxonTest(
	double[] sample1,
	double[] sample2,
	TwoSampleHypothesis alternate = TwoSampleHypothesis.ValuesAreDifferent,
	Nullable<bool> exact = null,
	bool adjustForTies = true
)
Request Example View Source

Parameters

sample1
Type:System.Double[]
The first sample.
sample2
Type:System.Double[]
The second sample.
alternate (Optional)
Type: Accord.Statistics.Testing.TwoSampleHypothesis
The alternative hypothesis (research hypothesis) to test.
exact (Optional)
Type: System.Nullable<Boolean>
True to compute the exact distribution. May require a significant amount of processing power for large samples (n > 12). If left at null, whether to compute the exact or approximate distribution will depend on the number of samples. Default is null.
adjustForTies (Optional)
Type: System.Boolean
Whether to account for ties when computing the rank statistics or not. Default is true.
See Also