![]() |
| サイトマップ | |
|
カイ二乗の確率密度関数です。指定した引数値における、累積分布関数の傾きの値を返します。
chisquareden
(x, n)
引数 x は独立変数で、スカラーもしくは範囲として与えられた数値を指定します。x が範囲の場合は、中括弧 {}
を使用して定義するか、ワークシートの列を指定して定義する必要があります。x は、負の値ではいけません。引数 n は正の整数で、自由度となります。
chisquareden(5,8)
* .1 = .10688
This function is the chi-square probability density function. It returns the value of the slope of the cumulative distribution function at the specified argument value.
chisquareden(x,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 n argument can be any positive integer and equals the degrees of freedom.
The density function can be used to estimate the probability that the values of a chi-square distributed random variable X lie in a small interval. If X has 8 degrees of freedom, then to estimate the probability that the values of X lie between 5 and 5.1, multiply the density of X at 5 by the length of the interval .1:
chisquareden(5,8) * .1 = .10688