|
FTest Constructor (Double, 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 var1,
double var2,
int d1,
int d2,
TwoSampleHypothesis alternate = TwoSampleHypothesis.FirstValueIsGreaterThanSecond
)
Public Sub New (
var1 As Double,
var2 As Double,
d1 As Integer,
d2 As Integer,
Optional alternate As TwoSampleHypothesis = TwoSampleHypothesis.FirstValueIsGreaterThanSecond
)
Request Example
View SourceParameters
- var1
- Type: SystemDouble
The variance of the first sample. - var2
- Type: SystemDouble
The variance of the second sample. - d1
- Type: SystemInt32
The degrees of freedom for the first sample. - d2
- Type: SystemInt32
The degrees of freedom for the second sample. - alternate (Optional)
- Type: Accord.Statistics.TestingTwoSampleHypothesis
The alternative hypothesis (research hypothesis) to test.
See Also