matplotlib.pyplot.ylim #
- matplotlib.pyplot。ylim ( * args , ** kwargs ) [来源] #
获取或设置当前坐标区的 y 限制。
来电签名:
bottom, top = ylim() # return the current ylim ylim((bottom, top)) # set the ylim to bottom, top ylim(bottom, top) # set the ylim to bottom, top
如果你不指定 args,你也可以将bottom或 top作为 kwargs 传递,即:
ylim(top=3) # adjust the top leaving bottom unchanged ylim(bottom=1) # adjust the bottom leaving top unchanged
设置限制会关闭 y 轴的自动缩放。
- 返回:
- 底部,顶部
新 y 轴范围的元组。
笔记
不带参数调用此函数(例如
ylim()
)是 pyplot 等效get_ylim
于在当前轴上调用。使用参数调用这个函数相当于调用set_ylim
当前坐标轴的 pyplot。所有参数都通过了。