Stats.Van Der Waerden Scores Method
Definition
Namespace: Extreme.Statistics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
Overload List
Van | Returns the van der Waerden scores corresponding to the specified ranks. |
Van | 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.
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.
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. |