Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我绘制了一个图形:
fig=plt.figure() ax=fig.add_subplot(111) ax.plot(date,tso1.values)
如何获得图形的 y 轴最大值和最小值?谢谢你。
如果“增益”是指得到,答案是ax.get_ylim()。
ax.get_ylim()
一个建议:我使用 ipython 来检查对象并help()了解这些方法的作用。最重要的是,matplotlib 方法名称往往非常准确。你可以学到很多关于使用 ipython 和 tab 补全可以做什么的知识
help()