【したいこと】
データフレームとグラフを同じ場所に表示させる
【試したこと】
Plt.showの前にDataフレームをだす式を挿入
そもそも可能なのでしょうか?
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)))) #データフレームを表示 npivot1.head() plt.show()
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。