Click or drag to resize

UnivariateFisherFTest Method

Tests whether the variances of two samples are compatible.

Namespace:  Meta.Numerics.Statistics
Assembly:  Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax
public static TestResult FisherFTest(
	IReadOnlyCollection<double> a,
	IReadOnlyCollection<double> b
)

Parameters

a
Type: System.Collections.GenericIReadOnlyCollectionDouble
The first sample.
b
Type: System.Collections.GenericIReadOnlyCollectionDouble
The second sample.

Return Value

Type: TestResult
The result of the test.
Exceptions
ExceptionCondition
ArgumentNullExceptiona or b is .
InsufficientDataExceptiona or b contains fewer than two values.
See Also