|
OneSampleHypothesis Enumeration
|
Common test Hypothesis for one sample tests, such
as
ZTest and
TTest.
Namespace:
Accord.Statistics.Testing
Assembly:
Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntax public enum OneSampleHypothesis
Public Enumeration OneSampleHypothesis
Members
| Member name | Value | Description |
---|
| ValueIsDifferentFromHypothesis | 0 |
Tests if the mean (or the parameter under test)
is significantly different from the hypothesized
value, without considering the direction for this
difference.
|
| ValueIsGreaterThanHypothesis | 1 |
Tests if the mean (or the parameter under test)
is significantly greater (larger, bigger) than
the hypothesized value.
|
| ValueIsSmallerThanHypothesis | 2 |
Tests if the mean (or the parameter under test)
is significantly smaller (lesser) than the
hypothesized value.
|
See Also