|
WilcoxonDistributionWMinimum Method
|
Computes the Wilcoxon's W statistic (equivalent to
Mann-Whitney U when used in two-sample tests).
Namespace:
Accord.Statistics.Distributions.Univariate
Assembly:
Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntax public static double WMinimum(
int[] signs,
double[] ranks
)
Public Shared Function WMinimum (
signs As Integer(),
ranks As Double()
) As Double
Request Example
View SourceParameters
- signs
- Type: SystemInt32
- ranks
- Type: SystemDouble
Return Value
Type:
DoubleRemarks
The W statistic is computed as the minimum of the W+ and W- statistics.
See Also