グラフ を描写する時に上記のように出てしまい、スクロールしないとグラフまでいかないので、実行結果に出ないようにしたい。
【試したこと】
InteractiveShell.ast_node_interactivity = "all"
上記を設定しているからかもしれませんが、DataFrameとグラフのみにしたいです。
もしInteractiveShell.ast_node_interactivity = "all"を削除する以外で方法がありましたら、ご教授お願いいたします。
figure_= plt.figure(figsize=(12,4)) axes_= figure_.add_subplot(121) axes_.plot(x3, y3, 'o-') axes_.set_title('Daily_Spend') axes_.yaxis.set_major_formatter(plt.FuncFormatter(lambda x, loc: "{:,}".format(int(x)))) plt.xticks(x, rotation=90) plt.legend(Pivot.columns,bbox_to_anchor=(-0.2, 1), loc='upper right', borderaxespad=0, fontsize=10) #二つ目のグラフ figure_ = plt.figure(1, figsize=(12,3)) axes_= figure_.add_subplot(122) axes_.plot(x4, y4, 'o-') axes_.set_title('Daily_CPI') axes_.yaxis.set_major_formatter(plt.FuncFormatter(lambda x, loc: "{:,}".format(int(x)))) plt.xticks(x, rotation=90) plt.legend(Pivot.columns,bbox_to_anchor=(1, 1), loc='upper left', borderaxespad=0, fontsize=10) axes_.set_yticks(0,2000,100) #plt.legend(bbox_to_anchor=(0, -1), loc='upper left', borderaxespad=0, fontsize=18) plt.show()
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/03/13 06:22