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