One Sample TTest 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 OneSampleTTest. |
One | Constructs a new OneSampleTTest for the specified Vector<T>. |
One | Constructs a new OneSampleTTest for the specified Vector<T> with known standard deviation. |
One | Constructs a new OneSampleTTest for the specified Vector<T>. |
One | Constructs a new OneSampleTTest for the specified Vector<T> with known standard deviation. |
OneSampleTTest
Constructs a new OneSampleTTest.
public OneSampleTTest()
OneSampleTTest(Vector<Double>, Double)
Constructs a new OneSampleTTest for the
specified Vector<T>.
public OneSampleTTest(
Vector<double> data,
double mean
)
Parameters
OneSampleTTest(Vector<Double>, Double, HypothesisType)
Constructs a new OneSampleTTest for the
specified Vector<T> with known
standard deviation.
public OneSampleTTest(
Vector<double> data,
double mean,
HypothesisType hypothesisType
)
Parameters
- data Vector<Double>
- A Vector<T>
- mean Double
- The mean to test for.
- hypothesisType HypothesisType
- A HypothesisType value that specifies whether the test is two-tailed (the default) or one-tailed.
OneSampleTTest(Double, Double, Int32, Double)
Constructs a new OneSampleTTest for the
specified Vector<T>.
public OneSampleTTest(
double sampleMean,
double sampleStandardDeviation,
int sampleSize,
double mean
)
Parameters
- sampleMean Double
- The mean of the sample.
- sampleStandardDeviation Double
- The standard deviation of the sample.
- sampleSize Int32
- The size of the sample.
- mean Double
- The proposed population mean.
OneSampleTTest(Double, Double, Int32, Double, HypothesisType)
Constructs a new OneSampleTTest for the
specified Vector<T> with known
standard deviation.
public OneSampleTTest(
double sampleMean,
double sampleStandardDeviation,
int sampleSize,
double mean,
HypothesisType hypothesisType
)
Parameters
- sampleMean Double
- The mean of the sample.
- sampleStandardDeviation Double
- The standard deviation of the sample.
- sampleSize Int32
- The size of the sample.
- mean Double
- The mean to test for.
- hypothesisType HypothesisType
- A HypothesisType value that specifies whether the test is two-tailed (the default) or one-tailed.