Stats.TukeyScores Method

Definition

Namespace: Extreme.Statistics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23

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.

Stats.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

ArgumentNullExceptionranks is null.

Stats.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

ArgumentNullExceptionranks is null.

See Also