Matplotlib定量比較-箱ひげ図
箱ひげ図とは
箱ひげ図はデータの分布に関する追加情報を示すものです。
分布の中央値、四分位値の範囲、データの約99%の予想範囲がわかります。
範囲を超える異常値は強調されます。
簡単な箱ひげ図
import matplotlib.pyplot as plt
fig, ax = plt.subplots()
ax.boxplot([data01['colName'], data02['colName']])
ax.set_xticklabels(['Data01', 'Data02'])
ax.set_ylabel('Col Name')
plt.show()
Author And Source
この問題について(Matplotlib定量比較-箱ひげ図), 我々は、より多くの情報をここで見つけました https://qiita.com/fastso/items/4aa311ab0ddbf1a28266著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .