142

我想将 y 轴的上限设置为“自动”,但我想保持 y 轴的下限始终为零。我尝试了“自动”和“自动量程”,但这些似乎不起作用。先感谢您。

这是我的代码:

import matplotlib.pyplot as plt

def plot(results_plt,title,filename):

    ############################
    # Plot results

    # mirror result table such that each parameter forms an own data array
    plt.cla()
    #print results_plt
    XY_results = []

    XY_results = zip( *results_plt)

    plt.plot(XY_results[0], XY_results[2], marker = ".")

    plt.title('%s' % (title) )
    plt.xlabel('Input Voltage [V]')
    plt.ylabel('Input Current [mA]')

    plt.grid(True)
    plt.xlim(3.0, 4.2)  #***I want to keep these values fixed"
    plt.ylim([0, 80]) #****CHANGE**** I want to change '80' to auto, but still keep 0 as the lower limit 
    plt.savefig(path+filename+'.png')
4

6 回答 6

138

您可以只传递left或传递rightset_xlim

plt.gca().set_xlim(left=0)

对于 y 轴,使用bottomor top

plt.gca().set_ylim(bottom=0)
于 2012-07-31T16:58:23.690 回答
47

只需设置xlim其中一个限制:

plt.xlim(left=0)
于 2015-09-17T15:16:03.767 回答
14

如前所述并根据 matplotlib 文档,ax可以使用类的set_xlim方法设置给定轴的 x 限制matplotlib.axes.Axes

例如,

>>> ax.set_xlim(left_limit, right_limit)
>>> ax.set_xlim((left_limit, right_limit))
>>> ax.set_xlim(left=left_limit, right=right_limit)

一个限制可以保持不变(例如左限制):

>>> ax.set_xlim((None, right_limit))
>>> ax.set_xlim(None, right_limit)
>>> ax.set_xlim(left=None, right=right_limit)
>>> ax.set_xlim(right=right_limit)

要设置当前轴的 x 限制,该matplotlib.pyplot模块包含xlim仅包装 matplotlib.pyplot.gcamatplotlib.axes.Axes.set_xlim.

def xlim(*args, **kwargs):
    ax = gca()
    if not args and not kwargs:
        return ax.get_xlim()
    ret = ax.set_xlim(*args, **kwargs)
    return ret

同样,对于 y 限制,使用matplotlib.axes.Axes.set_ylimmatplotlib.pyplot.ylim。关键字参数是topbottom

于 2017-09-22T10:08:08.153 回答
4

只需在@silvio 上添加一个点:如果您使用轴来绘制类似figure, ax1 = plt.subplots(1,2,1). 然后ax1.set_xlim(xmin = 0)也有效!

于 2016-06-08T07:09:51.017 回答
3

和允许值set_xlim来实现这一点。但是,您必须在绘制数据之后使用函数。如果您不这样做,它将使用默认的 0 表示左/下,使用默认值 1 表示上/右。设置限制后,每次绘制新数据时,它都不会重新计算“自动”限制。set_ylimNone

import matplotlib.pyplot as plt

fig = plt.figure()
ax = fig.add_subplot(111)
ax.plot([0, 1, 4, 5], [3, 5, 6, 9])
ax.set_xlim(left=2, right=None)
ax.set_ylim(bottom=None, top=7)

plt.show()

(即,在上面的例子中,如果你ax.plot(...)在最后做,它不会产生预期的效果。)

于 2021-03-25T18:12:46.930 回答
3

你也可以这样做:

ax.set_xlim((None,upper_limit))
ax.set_xlim((lower_limit,None))

如果您想使用 set(),这将很有帮助,它允许您一次设置多个参数:

ax.set(xlim=(None, 3e9), title='my_title', xlabel='my_x_label', ylabel='my_ylabel')
于 2020-09-06T00:18:57.083 回答