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,则可以将leftright作为 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。所有参数都通过了。

使用#的示例matplotlib.pyplot.xlim

共享轴

共享轴

共享轴
无限线

无限线

无限线
Pyplot 文本

Pyplot 文本

Pyplot 文本
帧抓取

帧抓取

帧抓取
互动功能

互动功能

互动功能