web-dev-qa-db-ja.com

Matplotlibのサブプロトコルにタイトルを追加するにはどうすればいいですか?

たくさんのサブプロットを含む1つの図があります。

fig = plt.figure(num=None, figsize=(26, 12), dpi=80, facecolor='w', edgecolor='k')
fig.canvas.set_window_title('Window Title')

# Returns the Axes instance
ax = fig.add_subplot(311) 
ax2 = fig.add_subplot(312) 
ax3 = fig.add_subplot(313) 

サブプロットにタイトルを追加する方法

fig.suptitleはすべてのグラフにタイトルを追加します。ax.set_title()は存在しますが、後者は私のサブプロットにタイトルを追加しません。

ご協力ありがとうございました。

編集:set_title()の誤字を修正しました。ありがとうRutger Kassies

144
shailenTJ

ax.title.set_text('My Plot Title')も動作するようです。

fig = plt.figure()
ax1 = fig.add_subplot(221)
ax2 = fig.add_subplot(222)
ax3 = fig.add_subplot(223)
ax4 = fig.add_subplot(224)
ax1.title.set_text('First Plot')
ax2.title.set_text('Second Plot')
ax3.title.set_text('Third Plot')
ax4.title.set_text('Fourth Plot')
plt.show()

matplotlib add titles on subplots

77
Jarad

ax.set_title()は別々のサブプロットのタイトルを設定します。

import matplotlib.pyplot as plt

if __== "__main__":
    data = [1, 2, 3, 4, 5]

    fig = plt.figure()
    fig.suptitle("Title for whole figure", fontsize=16)
    ax = plt.subplot("211")
    ax.set_title("Title for first plot")
    ax.plot(data)

    ax = plt.subplot("212")
    ax.set_title("Title for second plot")
    ax.plot(data)

    plt.show()

このコードがうまくいっているかどうか確認できますか?後で何かが上書きされるのでしょうか。

189
masteusz

import matplotlib.pyplot as pltを仮定した簡単な答え:

plt.gca().set_title('title')

のように:

plt.subplot(221)
plt.gca().set_title('title')
plt.subplot(222)
etc...

その場合、余分な変数は必要ありません。

22
JMDE

もっと短くしたい場合は、次のように書くことができます。

import matplolib.pyplot as plt
for i in range(4):
    plt.subplot(2,2,i+1).set_title('Subplot n°{}' .format(i+1))
plt.show()

明確ではないかもしれませんが、それ以上の行や変数は必要ありません。

3
SAGET Shinji