0

enter image description here

I wish to change the yticks on the figure, mainly change the le6 labeled on the top to 1000000, 2000000, ... on the yaxis

Omega
  • 63
  • 1
  • 6
  • 2
    Does this answer your question? [prevent scientific notation in matplotlib.pyplot](https://stackoverflow.com/questions/28371674/prevent-scientific-notation-in-matplotlib-pyplot) – RobinFrcd Jul 21 '21 at 11:00

1 Answers1

2

Add this line before the plot commands: plt.ticklabel_format(style='plain')

Esa Tuulari
  • 157
  • 2