简体   繁体   中英

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 numbers are displayed correctly all the time.

You can disable the offset ( see documentation )

import numpy as np
import pylab as pl

years = np.arange(2011,2016,1)
profit = np.random.random(years.size)

pl.figure()
ax=pl.subplot(121)
pl.scatter(years, profit)
ax=pl.subplot(122)
pl.scatter(years, profit)
ax.get_xaxis().get_major_formatter().set_useOffset(False)

在此处输入图片说明

Or, to set it for all figures/axes:

import matplotlib as mpl
mpl.rcParams['axes.formatter.useoffset'] = False

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM