Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

how to convert a axis label to non scientific notation in matploltlib

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()
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #convert #axis #label #scientific #notation #matploltlib
ADD COMMENT
Topic
Name
5+3 =