Levene Test Constructor
Definition
Namespace: Extreme.Statistics.Tests
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
Overload List
Levene | Constructs a new LeveneTest. |
Levene | Constructs a new LeveneTest for the samples in a data frame. |
Levene | Constructs a new LeveneTest for the specified vector array. |
Levene | Constructs a new LeveneTest for the samples in a data frame. |
Levene | Constructs a new LeveneTest for the specified vector array. |
Levene | Constructs a new LeveneTest for the specified vector array. |
Levene | Constructs a new LeveneTest for the specified vector array. |
LeveneTest
Constructs a new LeveneTest.
public LeveneTest()
LeveneTest(IDataFrame)
Constructs a new LeveneTest for
the samples in a data frame.
public LeveneTest(
IDataFrame samples
)
Parameters
- samples IDataFrame
- A IDataFrame containing the samples to be compared.
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>[])
Constructs a new LeveneTest for
the specified vector array.
public LeveneTest(
Vector<double>[] samples
)
Parameters
- samples Vector<Double>[]
- Array of vector containing the samples to be compared.
LeveneTest(IDataFrame, LeveneTestLocationMeasure)
Constructs a new LeveneTest for
the samples in a data frame.
public LeveneTest(
IDataFrame samples,
LeveneTestLocationMeasure meanType
)
Parameters
- samples IDataFrame
- A IDataFrame containing the samples to be compared.
- meanType LeveneTestLocationMeasure
- A LeveneTestLocationMeasure value that specifies which type of location estimate is to be used.
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>, IGrouping)
Constructs a new LeveneTest for
the specified vector array.
public LeveneTest(
Vector<double> samples,
IGrouping grouping
)
Parameters
LeveneTest(Vector<Double>[], LeveneTestLocationMeasure)
Constructs a new LeveneTest for
the specified vector array.
public LeveneTest(
Vector<double>[] samples,
LeveneTestLocationMeasure meanType
)
Parameters
- samples Vector<Double>[]
- Array of vector containing the samples to be compared.
- meanType LeveneTestLocationMeasure
- A LeveneTestLocationMeasure value that specifies which type of location estimate is to be used.
LeveneTest(Vector<Double>, IGrouping, LeveneTestLocationMeasure)
Constructs a new LeveneTest for
the specified vector array.
public LeveneTest(
Vector<double> samples,
IGrouping grouping,
LeveneTestLocationMeasure meanType
)
Parameters
- samples Vector<Double>
- Array of vector containing the samples to be compared.
- grouping IGrouping
- Specifies how the values in samples should be grouped.
- meanType LeveneTestLocationMeasure
- A LeveneTestLocationMeasure value that specifies which type of location estimate is to be used.