![]() |
| サイトマップ | |
|
F 分布の確率密度関数です。指定した引数値における、累積分布関数の傾きの値を返します。
fden
(x, m, n)
引数 x は独立変数で、スカラーもしくは範囲として与えられた数値を指定します。x が範囲の場合は、中括弧 {}
を使用して定義するか、ワークシートの列を指定して定義する必要があります。x は、負の値ではいけません。引数 m は正の整数で、分子の自由度と等しくなります。引数 n は正の整数で、分母の自由度と等しくなります。
fden(2,3,14)
* .1 = .014882
This function is the F-distribution’s probability density function. It returns the value of the slope of the cumulative distribution function at the specified argument value.
fden(x,m,n)
The x argument represents the independent variable and can either be a scalar or a range of numbers. If x is a range, then it must be defined by either using braces { } or by specifying a worksheet column. Any value for x must be non-negative. The m argument is any positive integer and equals the numerator degrees of freedom. The n argument is any positive integer and equals the denominator degrees of freedom.
The density function can be used to estimate the probability that the values of an F-distributed random variable F lie in a small interval. If F has a numerator degrees of freedom equal to 3 and a denominator degrees of freedom equal to 14, then to estimate the probability that the values of F lie between 2 and 2.1, multiply the density of F at 2 by the length of the interval .1:
fden(2,3,14) * .1 = .014882