One Sample Chi Square 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
One | Constructs a new OneSampleChiSquareTest. |
One | Constructs a new OneSampleChiSquareTest for the specified Vector<T>. |
One | Constructs a new OneSampleChiSquareTest for a sample with the specified parameters. |
One | Constructs a new OneSampleChiSquareTest for the specified Vector<T> with known variance. |
One | Constructs a new OneSampleChiSquareTest for a sample with the specified parameters. |
OneSampleChiSquareTest
Constructs a new OneSampleChiSquareTest.
public OneSampleChiSquareTest()
OneSampleChiSquareTest(Vector<Double>, Double)
Constructs a new OneSampleChiSquareTest for the
specified Vector<T>.
public OneSampleChiSquareTest(
Vector<double> sample,
double variance
)
Parameters
OneSampleChiSquareTest(Int32, Double, Double)
Constructs a new OneSampleChiSquareTest for a sample with the
specified parameters.
public OneSampleChiSquareTest(
int sampleSize,
double sampleVariance,
double variance
)
Parameters
- sampleSize Int32
- The number of observations in the sample.
- sampleVariance Double
- The variance of the sample.
- variance Double
- The variance to test for.
OneSampleChiSquareTest(Vector<Double>, Double, HypothesisType)
Constructs a new OneSampleChiSquareTest for the
specified Vector<T> with known
variance.
public OneSampleChiSquareTest(
Vector<double> sample,
double variance,
HypothesisType hypothesisType
)
Parameters
- sample Vector<Double>
- A Vector<T>
- variance Double
- The variance to test for.
- hypothesisType HypothesisType
- A HypothesisType value that specifies whether the test is two-tailed (the default) or one-tailed.
OneSampleChiSquareTest(Int32, Double, Double, HypothesisType)
Constructs a new OneSampleChiSquareTest for a sample with the
specified parameters.
public OneSampleChiSquareTest(
int sampleSize,
double sampleVariance,
double variance,
HypothesisType hypothesisType
)
Parameters
- sampleSize Int32
- The number of observations in the sample.
- sampleVariance Double
- The variance of the sample.
- variance Double
- The variance to test for.
- hypothesisType HypothesisType
- A HypothesisType value that specifies whether the test is two-tailed (the default) or one-tailed.