この内容は古いバージョンです。最新バージョンを表示するには、戻るボタンを押してください。
バージョン:2
ページ更新者:guest
更新日時:2017-09-21 09:52:42

タイトル: 縦棒グラフ

これはMatplotlibの縦棒グラフに関する記事です。

縦棒グラフ横棒グラフの説明をします。

 

■縦棒グラフ

構文

bar(left, height)

 

import matplotlib.pyplot as plt

left = range(0, 3)
height = [10, 20, 30]
label = ["A", "B", "C"]

plt.bar(left, height, tick_label=label)

plt.show()

tick_labelを指定することで棒グラフにラベルを貼ることができます。

 

出力結果

 

 

■横棒グラフ

構文

barh(bottom, width)

 

import matplotlib.pyplot as plt

bottom = range(0, 3)
width = [10, 20, 30]
label = ["A", "B", "C"]

plt.barh(bottom, width, tick_label=label)

plt.show()

tick_labelを指定することで棒グラフにラベルを貼ることができます。

 

出力結果