Adjusting Axis in Matplotlib
问题 When creating my graph using Matplotlib, I have coded it to automatically size the axis as follows: plt.axis([(int(yearofreleaselist[oldestfilm])-1), (int(yearofreleaselist[0]))+1, 0, (max(profits))+50000000]) However, dealing with large figures, the profits only displays a single digit with various shorthand references, as seen on this example graph: The year of release also doesn't plot correctly, but some results are displayed properly, as seen here: I'm wondering how to fix this so the