Answers for "plt.plot() remove scientific notation"

0

remove scientific notation python matplotlib

fig, ax = plt.subplots()
ax.plot(range(2003,2012,1),range(200300,201200,100))
ax.ticklabel_format(style='plain') #This is the line you need <-------
plt.show()
Posted by: Guest on May-11-2020

Code answers related to "plt.plot() remove scientific notation"

Python Answers by Framework

Browse Popular Code Answers by Language