概要
fig.suptitle("タイトル")を使って、subplotの全体にタイトルを付けることができる。
コード
import matplotlib.pyplot as plt
x0 = [1, 2, 3, 4, 5]
y0 = [-5, -1, 9, 6, 5]
y1 = [6, 3, 1, 4, 8]
fig = plt.figure()
fig.suptitle("Fig. title")
ax0 = fig.add_subplot(1, 2, 1)
ax0.plot(x, y0)
ax1 = fig.add_subplot(1, 2, 2)
ax1.plot(x, y1)
plt.show()