#>>> %matplotlib inline import numpy as np import matplotlib.pyplot as plt import matplotlib.ticker as ticker plt.gca().get_yaxis().get_major_formatter().set_useOffset(False) # X軸の数字が必ず整数になるようにする plt.gca().get_yaxis().set_major_locator(ticker.MaxNLocator(integer=True)) left = x height1 = y height2 = y2 width = 6.0 # X軸の数字が必ず整数になるようにする plt.bar(left, height1, width = width,color="lightblue") plt.xticks(x, rotation=90) # 上に積み上げる棒グラフを作成する plt.bar(left, height2, bottom=height1, width = width,color="orange")
【したいこと】
Y軸をe表記ではなく、全部の数字を表記したい。
Roundで数を小さくして見たのですが、グラフ上では変わらず。
ご教授いただけると助かります。
【y,y2の数字】
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。