我需要在matplotlib上设置y轴限制的帮助。这是我尝试失败的代码。
import matplotlib.pyplot as plt
plt.figure(1, figsize = (8.5,11))
plt.suptitle('plot title')
ax = []
aPlot = plt.subplot(321, axisbg = 'w', title = "Year 1")
ax.append(aPlot)
plt.plot(paramValues,plotDataPrice[0], color = '#340B8C',
marker = 'o', ms = 5, mfc = '#EB1717')
plt.xticks(paramValues)
plt.ylabel('Average Price')
plt.xlabel('Mark-up')
plt.grid(True)
plt.ylim((25,250))
使用此图的数据,我得到的Y轴限制为20和200。但是,我希望限制为20和250。
使用Matplotlib 0.98.5.2,Python 2.6.2为我工作。我都尝试过
—
Manoj Govindan
plt.ylim((25,250))
和 plt.ylim(ymax = 250, ymin = 25)
。我正在使用Agg
后端。
感谢你们俩。它适用于您的PDF后端吗?
—
Curious2learn 2010年
注意:
—
SherylHohman
axisbg
现已弃用
plt.show()
在末尾添加以显示图,则可以与Matplotlib 1.0.0一起使用。您正在使用哪个版本和哪个后端?