Click or drag to resize
Accord.NET (logo)

MannWhitneyDistribution Constructor (Double, Double, NullableBoolean)

Constructs a Mann-Whitney's U-statistic distribution.

Namespace:  Accord.Statistics.Distributions.Univariate
Assembly:  Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntax
public MannWhitneyDistribution(
	double[] ranks1,
	double[] ranks2,
	Nullable<bool> exact = null
)
Request Example View Source

Parameters

ranks1
Type: SystemDouble
The global rank statistics for the first sample.
ranks2
Type: SystemDouble
The global rank statistics for the second sample.
exact (Optional)
Type: SystemNullableBoolean
True to compute the exact distribution. May require a significant amount of processing power for large samples (n > 30). If left at null, whether to compute the exact or approximate distribution will depend on the number of samples.
See Also