copipe Python | 基本統計量を求める。

概要

scipyをインポートし、stats.describe(データ)を使うことで、平均、分散、歪度、尖度の基本統計量を求めることができる。

コード

import scipy
a = scipy.stats.describe([-1, 0, 1, 2, 3, 2])
print("平均",a.mean)
print("分散",a.variance)
print("歪度",a.skewness)
print("尖度",a.kurtosis)
print("最大",a.minmax[0])
print("最小",a.minmax[1])

結果

平均 1.1666666666666667
分散 2.166666666666667
歪度 -0.30531626975805193
尖度 -1.1517159763313605
最大 -1
最小 3