cloverben

Python绘图,如何取消纵坐标的科学计数法

 

 

通过style的关键字来判断

plain代表关闭科学计数法

sci代表开启科学计数法

具体使用

  关闭科学计数法

plt.ticklabel_format(style=\'plain\')

 开启科学计数法
plt.ticklabel_format(style=\'sci\', scilimits=(0,0))

分类:

技术点:

相关文章:

  • 2022-01-13
  • 2022-02-08
  • 2021-09-10
  • 2021-12-16
  • 2021-09-19
  • 2021-11-27
猜你喜欢
  • 2022-12-23
  • 2021-12-02
  • 2021-10-23
  • 2021-05-22
  • 2021-04-03
  • 2021-09-14
  • 2021-12-08
相关资源
相似解决方案