Difference between revisions of "RU/kb/00000131"
From Wiki
Jump to navigationJump to search (Приведение в соответствие с Правилами) |
|||
(13 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
− | {{DISPLAYTITLE:База Знаний: {{OOoC|1}}. Функция FTEST}} | + | <section begin=title /><noinclude>{{DISPLAYTITLE:База Знаний: {{OOoC|1}}. </noinclude>Функция FTEST<noinclude>}}</noinclude><section end=title /> |
− | + | {{BreadCrumbL10n|RU/kb/module/calc/examples_of_calculations}} | |
+ | [[en:Documentation/How_Tos/Calc:_FTEST_function]] | ||
__NOTOC__ | __NOTOC__ | ||
Line 22: | Line 23: | ||
* Earlier versions of Excel and the ODFF draft specification incorrectly claimed this was a one-tailed test. | * Earlier versions of Excel and the ODFF draft specification incorrectly claimed this was a one-tailed test. | ||
− | {{RU | + | {{SeeAlso|RU| |
− | * | + | * {{SecTitle|RU/kb/00000130}} |
* [[Documentation/How_Tos/Using Arrays|Array formulas]] | * [[Documentation/How_Tos/Using Arrays|Array formulas]] | ||
* [[Documentation/How_Tos/Calc: Statistical functions|Statistical functions]] | * [[Documentation/How_Tos/Calc: Statistical functions|Statistical functions]] | ||
Line 29: | Line 30: | ||
* [[Documentation/How_Tos/Calc: Functions listed by category|Functions listed by category]]}} | * [[Documentation/How_Tos/Calc: Functions listed by category|Functions listed by category]]}} | ||
− | {{ | + | {{SignYear|Sancho|А. Е. Харламенков|2010}} |
− | {{ | + | {{RUkbCalcBottom}} |
Latest revision as of 08:27, 6 September 2011
FTEST
Возвращает результат F-теста (двусторонний уровень значимости).
Syntax:
FTEST(data1; data2)
- data1 and data2 are ranges or arrays (possibly of different size) containing numbers, on which the F-test is performed. The F-test calculates the likelihood that two samples have the same variance.
- In effect, the sample variances of data1 and data2 are calculated. data1 and data2 are re-ordered if necessary so that data1 has the larger variance (σ1) and data2 the smaller (σ2), and an F_value is calculated as σ1/σ2. The result returned by FTEST is 2*FDIST(F_value; COUNT(data1)-1; COUNT(data2)-1). This is the two-tailed probability that the variances in data1 and data2 are not significantly different. (The internal algorithms used by Calc are more sophisticated than this).
- Advanced topic:
- The parameters data1 and data2 are always evaluated as array formulas.
Example:
FTEST({9;8;6;8}; {5;6;7})
- возвращает приблизительное значение 0.82. The probability that the variances of these two samples are not significantly different is about 82%. Note: a real world example would need more data than this.
Issues:
- Earlier versions of Excel and the ODFF draft specification incorrectly claimed this was a one-tailed test.
Смотрите также:
- Функция FDIST
- Array formulas
- Statistical functions
- Functions listed alphabetically
- Functions listed by category