Click or drag to resize
Accord.NET (logo)

TwoSampleHypothesis Enumeration

Common test Hypothesis for two sample tests, such as TwoSampleZTest and TwoSampleTTest.

Namespace:  Accord.Statistics.Testing
Assembly:  Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntax
public enum TwoSampleHypothesis
Members
  Member nameValueDescription
ValuesAreDifferent0 Tests if the mean (or the parameter under test) of the first sample is different from the mean of the second sample, without considering any particular direction for the difference.
FirstValueIsGreaterThanSecond1 Tests if the mean (or the parameter under test) of the first sample is greater (larger, bigger) than the mean of the second sample.
FirstValueIsSmallerThanSecond2 Tests if the mean (or the parameter under test) of the first sample is smaller (lesser) than the mean of the second sample.
See Also