Stats.TukeyScores Method

Definition

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

Overload List

TukeyScores(IList<Double>) Returns the Tukey scores corresponding to the specified ranks.
TukeyScores(IList<Int32>) Returns the Tukey scores corresponding to the specified ranks.

TukeyScores(IList<Double>)

Returns the Tukey scores corresponding to the specified ranks.
C#
public static Vector<double> TukeyScores(
	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 Tukey scores corresponding to ranks.

Exceptions

ArgumentNullException

ranks is null.

TukeyScores(IList<Int32>)

Returns the Tukey scores corresponding to the specified ranks.
C#
public static Vector<double> TukeyScores(
	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 Tukey scores corresponding to ranks.

Exceptions

ArgumentNullException

ranks is null.

See Also