【したいこと】
Y軸の数字に3桁ごとにカンマをつける
【試したこと】
ax.yaxis.set_major_formatter(plt.FuncFormatter(lambda x, loc: "{:,}".format(int(x))))
#グラフをかっこよくしてみる。 fig ,ax = plt.subplots(figsize=(20,5)) #試したコード ax.yaxis.set_major_formatter(plt.FuncFormatter(lambda x, loc: "{:,}".format(int(x)))) plt.subplot(1,2,1) plt.plot(x,y, '+--',) plt.ylim([0, 300000]) plt.yticks([0,60000,70000,80000,90000,100000,15k00000,250000,300000]) plt.show
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。