,可以通过以下步骤实现:
import matplotlib.pyplot as plt
import matplotlib.ticker as ticker
fig, ax = plt.subplots()
x = [1, 2, 3, 4, 5]
y = [1000000, 2000000, 3000000, 4000000, 5000000]
ax.plot(x, y)
ax.xaxis.set_major_formatter(ticker.FuncFormatter(lambda x, pos: format(int(x), ',')))
ax.yaxis.set_major_formatter(ticker.FuncFormatter(lambda x, pos: format(int(x), ',')))
这里使用了ticker.FuncFormatter
函数来自定义刻度格式化函数,将数值转换为整数并添加千位分隔符。
plt.show()
这样就可以在比例matplotlib上禁用科学记数法,显示整数刻度并添加千位分隔符。
推荐的腾讯云相关产品:无
希望这个答案能够满足您的需求。如果您还有其他问题,请随时提问。
领取专属 10元无门槛券
手把手带您无忧上云