LeveneTest Constructor

Definition

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

Overload List

LeveneTest() Constructs a new LeveneTest.
LeveneTest(IDataFrame, LocationMeasure) Constructs a new LeveneTest for the samples in a data frame.
LeveneTest(Vector<Double>[], LocationMeasure) Constructs a new LeveneTest for the specified vector array.
LeveneTest(Vector<Double>, IGrouping, LocationMeasure) Constructs a new LeveneTest for the specified vector array.

LeveneTest

Constructs a new LeveneTest.
C#
public LeveneTest()

LeveneTest(IDataFrame, LocationMeasure)

Constructs a new LeveneTest for the samples in a data frame.
C#
public LeveneTest(
	IDataFrame samples,
	LocationMeasure locationMeasure = LocationMeasure.Median
)

Parameters

samples  IDataFrame
A IDataFrame containing the samples to be compared.
locationMeasure  LocationMeasure  (Optional)
Optional. A LocationMeasure value that specifies which type of location estimate is to be used.The default is the median.

Remarks

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

Exceptions

ArgumentException

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

LeveneTest(Vector<Double>[], LocationMeasure)

Constructs a new LeveneTest for the specified vector array.
C#
public LeveneTest(
	Vector<double>[] samples,
	LocationMeasure locationMeasure = LocationMeasure.Median
)

Parameters

samples  Vector<Double>[]
Array of vector containing the samples to be compared.
locationMeasure  LocationMeasure  (Optional)
Optional. A LocationMeasure value that specifies which type of location estimate is to be used.The default is the median.

LeveneTest(Vector<Double>, IGrouping, LocationMeasure)

Constructs a new LeveneTest for the specified vector array.
C#
public LeveneTest(
	Vector<double> samples,
	IGrouping grouping,
	LocationMeasure locationMeasure = LocationMeasure.Median
)

Parameters

samples  Vector<Double>
Array of vector containing the samples to be compared.
grouping  IGrouping
Specifies how the values in samples should be grouped.
locationMeasure  LocationMeasure  (Optional)
Optional. A LocationMeasure value that specifies which type of location estimate is to be used.The default is the median.

See Also