関数名 Function name |
機能・用途 Purpose |
calculate_average 【マニュアル改訂中につき非公開】 [Documentation is not open as it is under revision] |
実数値配列の要素の平均値を計算する。 Calculate the average of the components of an array of real numbers. |
calculate_stddev 【マニュアル改訂中につき非公開】 [Documentation is not open as it is under revision] |
実数値配列の要素の標準偏差(データ数を分母とするもの)を計算する。 Calculate the standard deviation of the components of an array of real numbers, where the number of data is used for the denominator. |
calculate_unbiased_stddev 【マニュアル改訂中につき非公開】 [Documentation is not open as it is under revision] |
実数値配列の要素の標準偏差
(不偏分散に対応して「データ数\(-1\)」を分母とするもの)
を計算する。 Calculate the standard deviation of the components of an array of real numbers, where the number of data subtracted by 1 is used for the denominator to be consistent with an unbiased variance. |
calculate_weighted_average 【マニュアル改訂中につき非公開】 [Documentation is not open as it is under revision] |
実数値配列の要素の重み付き平均を計算する。 Calculate the weighted average of the components of an array of real numbers. |
calculate_weighted_stddev 【マニュアル改訂中につき非公開】 [Documentation is not open as it is under revision] |
実数値配列の重み付き標準偏差(重みの総和を分母とするもの)を計算する。 Calculate the weighted standard deviation of the components of an array of real numbers, where the sum of the weights is used for the denominator. |
calculate_average_remove_outliers 【マニュアル改訂中につき非公開】 [Documentation is not open as it is under revision] |
実数値のリストから大きい方と小さい方の一定割合を除いた上で
平均値を計算する。 Calculate the average of a list of real numbers, excluding a given fraction in larger and smaller sides. |
calculate_stddev_remove_outliers 【マニュアル改訂中につき非公開】 [Documentation is not open as it is under revision] |
実数値のリストから大きい方と小さい方の一定割合を除いた上で
標準偏差(データ数を分母とするもの)を計算する。 Calculate the standard deviation of a list of real numbers, excluding a given fraction in larger and smaller sides; the number of data is used for the denominator. |
calculate_unbiased_stddev_remove_outliers 【マニュアル改訂中につき非公開】 [Documentation is not open as it is under revision] |
実数値のリストから大きい方と小さい方の一定割合を除いた上で
標準偏差(不偏分散に対応して「データ数\(-1\)」を分母とするもの)
を計算する。 Calculate the standard deviation of a list of real numbers, excluding a given fraction in larger and smaller sides; the number of data subtracted by 1 is used for the denominator to be consistent with an unbiased variance. |
calculate_weighted_average_remove_outliers 【マニュアル改訂中につき非公開】 [Documentation is not open as it is under revision] |
実数値のリストから大きい方と小さい方の一定割合を除いた上で
重み付き平均を計算する。 Calculate the weighted average of a list of real numbers, excluding a given fraction in larger and smaller sides. |
calculate_weighted_stddev_remove_outliers 【マニュアル改訂中につき非公開】 [Documentation is not open as it is under revision] |
実数値のリストから大きい方と小さい方の一定割合を除いた上で
重み付き標準偏差(重みの総和を分母とするもの)を計算する。 Calculate the weighted standard deviation of a list of real numbers, excluding a given fraction in larger and smaller sides; the sum of the weights is used for the denominator. |