【したいこと】
グラフを選択してタイトルをつける
【エラー部分】
右側の部分のみタイトルがつき、左側が反映されない
【試したこと】
plt.title を二箇所入れていれることでできると思ったのですが、反映されませんでした。
import pandas as pd import matplotlib.pyplot as plt x=npivot1.index y=npivot1.Spend x2=npivot1.index y2=npivot1.CPI #グラフの土台を作成 fig ,ax = plt.subplots(1,2 ,figsize=(20,5)) #左のグラフの設定 ax[0].plot(x,y) ax[0].yaxis.set_major_formatter(plt.FuncFormatter(lambda x, loc: "{:,}".format(int(x)))) plt.title('Spend!', fontdict={'fontname': 'Comic Sans MS', 'fontsize': 20}) #右のグラフの設定 ax[1].plot(x2,y2 ,label='2x') plt.title('aPI!', fontdict={'fontname': 'Comic Sans MS', 'fontsize': 20}) ax[1].yaxis.set_major_formatter(plt.FuncFormatter(lambda x, loc: "{:,}".format(int(x)))) plt.show()
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/03/01 07:53