RunsTest<T> Constructor

Definition

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

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