【環境】
MACbook Pro , Jupyternotebook
x=df_revenue_Everyday_G.index y=df_revenue_Everyday_G['Spend'] z=df_revenue_Everyday_G['CPI'] sns.set() #2つ目のグラフSCPI figure_ = plt.figure(figsize=(60,4)) axes_ = figure_.add_subplot(132) _ =axes_.plot(x, z, 'o-') _ =axes_.set_title('Daily CPI') _ =axes_.yaxis.set_major_formatter(plt.FuncFormatter(lambda x, loc: "{:.2f}".format(int(x)))) _ =plt.xticks(x, rotation=90) #_ =plt.legend() _ =plt.plot(x, z, marker = 'o', label='CPI') _=axes_.set_ylim(0, 2.5) _ =plt.legend(loc = 'upper right')
【グラフの結果】
【Y軸の数字の結果】
Time period
2020-05-23 1.58
2020-05-24 1.32
2020-05-25 0.67
2020-05-26 1.13
2020-05-27 0.94
2020-05-28 0.97
2020-05-29 0.57
Name: CPI, dtype: float64
【質問、試したこと】
グラフのY軸が小数点なのですが、切り捨てられてしまい、同じ数字になってる。
1.50なので細かい数字にしたい。
試したこと、小数点を表示するために_
=axes_.yaxis.set_major_formatter(plt.FuncFormatter(lambda x, loc: "{:.2f}".format(int(x))))
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。