|
|
| Line 26: |
Line 26: |
| | **<math>array1</math> and <math>array2 </math> are array of data. | | **<math>array1</math> and <math>array2 </math> are array of data. |
| | *For e.g.,FTEST([15,29,30],[62,74,80]) | | *For e.g.,FTEST([15,29,30],[62,74,80]) |
| | + | {{#ev:youtube|y_uVl6UbHtE|280|center|F-Test}} |
| | | | |
| | ==Examples== | | ==Examples== |
Revision as of 04:32, 27 June 2014
FTEST(array1,array2)
and
are array of data.
Description
- This function gives the result of F-test.
- The F-test is designed to test if two population variances are equal.
- It does this by comparing the ratio of two variances.
- So, if the variances are equal, the ratio of the variances will be 1.
- Let X1,...Xn and Y1...Ym be independent samples each have a Normal Distribution .
- It's sample means:
and
.
and

- Then the Test Statistic =
has an F-distribution with Failed to parse (syntax error): {\displaystyle n−1}
and Failed to parse (syntax error): {\displaystyle m−1}
degrees of freedom.
- In FTEST(array1,array2) where
is the data of first array,
is the data of second array.
- The array may be any numbers, names, or references that contains numbers.
- values are not considered if the array contains any text, logical values or empty cells.
When the
or Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle array2}
is less than 2 or the variance of the array value is zero, then this function will return the result as error.
ZOS Section
- The syntax is to calculate FTEST in ZOS is Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle FTEST(array1,array2)}
.
- Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle array1}
and Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle array2 }
are array of data.
- For e.g.,FTEST([15,29,30],[62,74,80])
Examples
1.
=FTEST(B4:B8,C4:C8)=0.81524906747183
2.
=FTEST(A1:A5,C1:C5)=0.9583035732212274
3.
FTEST(B1:B3,C1:C4} = 0.26412211240525474
4.
=FTEST(B1,C2:C3)=NAN
See Also
References
F Test