📌  相关文章
📜  如何在 matploltlib 中将轴标签转换为非科学计数法 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:34.450000             🧑  作者: Mango

代码示例1
fig, ax = plt.subplots()
ax.plot(range(2003,2012,1),range(200300,201200,100))
ax.ticklabel_format(useOffset=False)
ax.ticklabel_format(style='plain', axis='y')
plt.show()