Click or drag to resize
Accord.NET (logo)

IHypothesisTestTDistribution Interface

Common interface for Hypothesis tests depending on a statistical distribution.

Namespace:  Accord.Statistics.Testing
Assembly:  Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntax
public interface IHypothesisTest<out TDistribution> : IHypothesisTest
where TDistribution : IDistribution
Request Example View Source

Type Parameters

TDistribution
The test statistic distribution.

The IHypothesisTestTDistribution type exposes the following members.

Properties
  NameDescription
Public propertySignificant
Gets whether the null hypothesis should be rejected.
(Inherited from IHypothesisTest.)
Public propertyStatisticDistribution
Gets the distribution associated with the test statistic.
Public propertyTail
Gets the test type.
(Inherited from IHypothesisTest.)
Top
Methods
  NameDescription
Public methodPValueToStatistic
Converts a given p-value to a test statistic.
(Inherited from IHypothesisTest.)
Public methodStatisticToPValue
Converts a given test statistic to a p-value.
(Inherited from IHypothesisTest.)
Top
See Also