List.StandardDeviationList.StandardDeviation
構文Syntax
List.StandardDeviation(numbersList as list) as nullable number
バージョン情報About
標本に基づいて予測した、リスト numbersList
内の値の標準偏差を返します。Returns a sample based estimate of the standard deviation of the values in the list, numbersList
. numbersList
が数値のリストの場合は、数値が返されます。If numbersList
is a list of numbers, a number is returned. 空のリスト、または number
型ではない項目のリストに対しては、例外がスローされます。An exception is thrown on an empty list or a list of items that is not type number
.
例 1Example 1
1 から 5 の数値の標準偏差を求めます。Find the standard deviation of the numbers 1 through 5.
List.StandardDeviation({1..5})
1.5811388300841898