R语言F分布
F分布是1924年英國統計學家Ronald.A.Fisher爵士提出,并以其姓氏的第一個字母命名的。它是兩個服從卡方分布的獨立隨機變量各除以其自由度后的比值的抽樣分布,是一種非對稱分布,且位置不可互換。F分布有著廣泛的應用,如在方差分析、回歸方程的顯著性檢驗中都有著重要的地位。
?
The F Distribution
Description
Density, distribution function, quantile function and random generation for the F distribution with?df1?and?df2?degrees of freedom (and optional non-centrality parameter?ncp).
Usage
df(x, df1, df2, ncp, log = FALSE) pf(q, df1, df2, ncp, lower.tail = TRUE, log.p = FALSE) qf(p, df1, df2, ncp, lower.tail = TRUE, log.p = FALSE) rf(n, df1, df2, ncp)Arguments
| x, q | vector of quantiles. |
| p | vector of probabilities. |
| n | number of observations. If?length(n) > 1, the length is taken to be the number required. |
| df1, df2 | degrees of freedom.?Inf?is allowed. |
| ncp | non-centrality parameter. If omitted the central F is assumed. |
| log, log.p | logical; if TRUE, probabilities p are given as log(p). |
| lower.tail | logical; if TRUE (default), probabilities are?P[X ≤ x], otherwise,?P[X > x]. |
總結
- 上一篇: javascript之闭包理解以及应用场
- 下一篇: HDU odd-even number