RunsTest<T> Constructor

Definition

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

Overload List

RunsTest<T>(CategoricalVector<T>) Constructs a new runs test for a categorical variable.
RunsTest<T>(Vector<T>) Constructs a new runs test for a numerical variable.
RunsTest<T>(Vector<T>, T) Constructs a new runs test for a numerical variable and a specific cut point.

RunsTest<T>(CategoricalVector<T>)

Constructs a new runs test for a categorical variable.
C#
public RunsTest(
	CategoricalVector<T> sample
)

Parameters

sample  CategoricalVector<T>
 

RunsTest<T>(Vector<T>)

Constructs a new runs test for a numerical variable.
C#
public RunsTest(
	Vector<T> sample
)

Parameters

sample  Vector<T>
 

RunsTest<T>(Vector<T>, T)

Constructs a new runs test for a numerical variable and a specific cut point.
C#
public RunsTest(
	Vector<T> sample,
	T cutPoint
)

Parameters

sample  Vector<T>
 
cutPoint  T
 

See Also