|
FTest Constructor (Double, Int32, Int32, TwoSampleHypothesis)
|
Creates a new F-Test for a given statistic with given degrees of freedom.
Namespace:
Accord.Statistics.Testing
Assembly:
Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntax public FTest(
double statistic,
int d1,
int d2,
TwoSampleHypothesis alternate = TwoSampleHypothesis.FirstValueIsGreaterThanSecond
)
Public Sub New (
statistic As Double,
d1 As Integer,
d2 As Integer,
Optional alternate As TwoSampleHypothesis = TwoSampleHypothesis.FirstValueIsGreaterThanSecond
)
Request Example
View SourceParameters
- statistic
- Type: SystemDouble
The test statistic. - d1
- Type: SystemInt32
The degrees of freedom for the numerator. - d2
- Type: SystemInt32
The degrees of freedom for the denominator. - alternate (Optional)
- Type: Accord.Statistics.TestingTwoSampleHypothesis
The alternative hypothesis (research hypothesis) to test.
See Also