![]() |
| サイトマップ | |
|
関数 mean
は、指定範囲の平均値を返します。この関数を使用して、列平均を計算します (行の平均値を計算する場合は、avg
関数を用います) 。
関数 mean
では、次式で定義される算術平均を計算します:
mean
(range)
引数 range には 1つの範囲 ({}
で指定) 、もしくは、ワークシートの1列を指定します。範囲内に欠損値や文字列が含まれている場合は無視されます。
mean({1,2,3,4})
は、2.5 を返します。
The mean function returns the average of the range specified. Use this function to calculate column averages (as opposed to using the avg function to calculate row averages).
The mean function calculates the arithmetic mean, defined as:
mean(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.
The operation mean({1,2,3,4}) returns a value of 2.5.