Stats.VanDerWaerdenScores Method

Definition

Namespace: Numerics.NET.Statistics
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0

Overload List

VanDerWaerdenScores(IList<Double>) Returns the van der Waerden scores corresponding to the specified ranks.
VanDerWaerdenScores(IList<Int32>) Returns the van der Waerden scores corresponding to the specified ranks.

VanDerWaerdenScores(IList<Double>)

Returns the van der Waerden scores corresponding to the specified ranks.
C#
public static Vector<double> VanDerWaerdenScores(
	IList<double> ranks
)

Parameters

ranks  IList<Double>
A Vector<T> that contains the ranks of the observations, as produced by Ranks(Vector<Double>).

Return Value

Vector<Double>
A Vector<T> containing the van der Waerden scores corresponding to ranks.

Exceptions

ArgumentNullException

ranks is null.

VanDerWaerdenScores(IList<Int32>)

Returns the van der Waerden scores corresponding to the specified ranks.
C#
public static Vector<double> VanDerWaerdenScores(
	IList<int> ranks
)

Parameters

ranks  IList<Int32>
A Vector<T> that contains the ranks of the observations, as produced by Ranks(Vector<Double>).

Return Value

Vector<Double>
A Vector<T> containing the van der Waerden scores corresponding to ranks.

Exceptions

ArgumentNullException

ranks is null.

See Also