BartlettTest Constructor

Definition

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

Overload List

BartlettTest() Constructs a new BartlettTest..
BartlettTest(IDataFrame) Constructs a new BartlettTest for the specified vector.
BartlettTest(Vector<Double>[]) Constructs a new BartlettTest for the specified vector array.
BartlettTest(Vector<Double>, IGrouping) Constructs a new BartlettTest for the specified vector.

BartlettTest

Constructs a new BartlettTest..
C#
public BartlettTest()

BartlettTest(IDataFrame)

Constructs a new BartlettTest for the specified vector.
C#
public BartlettTest(
	IDataFrame samples
)

Parameters

samples  IDataFrame
A IDataFrame containing the samples to be compared.

Remarks

All members of samples must be numerical variables, i.e. of type vector.

Exceptions

ArgumentException One or more members of samples is not of type vector.

BartlettTest(Vector<Double>[])

Constructs a new BartlettTest for the specified vector array.
C#
public BartlettTest(
	Vector<double>[] samples
)

Parameters

samples  Vector<Double>[]
Array of vector containing the samples to be compared.

BartlettTest(Vector<Double>, IGrouping)

Constructs a new BartlettTest for the specified vector.
C#
public BartlettTest(
	Vector<double> samples,
	IGrouping grouping
)

Parameters

samples  Vector<Double>
A vector containing the samples to be compared.
grouping  IGrouping
A grouping object that specifies the groups the observations in samples belong to.

See Also