Fligner Killeen Test Constructor
Definition
Namespace: Numerics.NET.Statistics.Tests
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.7
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.7
Overload List
Fligner | Constructs a new FlignerKilleenTest. |
Fligner | Constructs a new FlignerKilleenTest for the samples in a data frame. |
Fligner | Constructs a new FlignerKilleenTest for the specified vector array. |
Fligner | Constructs a new FlignerKilleenTest for the specified vector array. |
FlignerKilleenTest
Constructs a new FlignerKilleenTest.
public FlignerKilleenTest()
FlignerKilleenTest(IDataFrame, LocationMeasure)
Constructs a new FlignerKilleenTest for the samples in a data frame.
public FlignerKilleenTest(
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.
FlignerKilleenTest(Vector<Double>[], LocationMeasure)
Constructs a new FlignerKilleenTest for the specified vector array.
public FlignerKilleenTest(
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.
FlignerKilleenTest(Vector<Double>, IGrouping, LocationMeasure)
Constructs a new FlignerKilleenTest for the specified vector array.
public FlignerKilleenTest(
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.