Click or drag to resize
Accord.NET (logo)

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
)
Request Example View Source

Parameters

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