WorksheetFunction.FTest(Object, Object) Method

Definition

Returns the result of an F-test. An F-test returns the two-tailed probability that the variances in array1 and array2 are not significantly different. Use this function to determine whether two samples have different variances. For example, given test scores from public and private schools, you can test whether these schools have different levels of test score diversity.

public:
 double FTest(System::Object ^ Arg1, System::Object ^ Arg2);
public double FTest (object Arg1, object Arg2);
Public Function FTest (Arg1 As Object, Arg2 As Object) As Double

Parameters

Arg1
Object

Array1 - the first array or range of data.

Arg2
Object

Array2 - the second array or range of data.

Returns

Remarks

Important: This function has been replaced with one or more new functions that may provide improved accuracy and whose names better reflect their usage. This function is still available for compatibility with earlier versions of Excel. However, if backward compatibility is not required, you should consider using the new functions from now on, because they more accurately describe their functionality. For more information about the new function, see the F_Test(Object, Object) method.

The arguments must be either numbers or names, arrays, or references that contain numbers.

If an array or reference argument contains text, logical values, or empty cells, those values are ignored; however, cells with the value zero are included.

If the number of data points in array1 or array2 is less than 2, or if the variance of array1 or array2 is zero, FTest returns the #DIV/0! error value.

Applies to