![]() |
| サイトマップ | |
|
関数 stderr
は、指定した範囲の平均に対する標準誤差を次式で計算し、その結果を返します。
ここで、s は標準偏差です。
stderr
(range)
引数 range には 1つの範囲 ({}
で指定) 、もしくは、ワークシートの1列を指定します。範囲内に欠損値や文字列が含まれている場合は無視されます。
x = {1,2}
に対して、stderr(x)
は 0.5 を返します。
The stderr function returns the standard error of the mean of the specified range, as defined by
where s is the standard deviation.
stderr(range)
The range argument must be a single range (indicated with the { } brackets) or a worksheet column. Any missing value or text string contained within a range is ignored.
For the range x = {1,2}, the operation stderr(x) returns a value of 0.5.