Matplotlib:为左侧和右侧设置不同的边距

时间:2018-03-20 10:43:49

标签: python matplotlib

我知道如何在matplotlib中增加双方的保证金:

import matplotlib.pyplot as plt
import numpy as np

fig, ax = plt.subplots()
ax.set_xmargin(0.3)   

ax.plot(range(10), np.random.rand(10))
plt.show()

enter image description here

但是,我希望只在右侧有一个边距:类似于ax.set_xmargin(left=0.0, right=0.3)。那可能吗? 我无法手动设置轴限制,因为绘图是动画的,并且数据在每一步都会发生变化。

1 个答案:

答案 0 :(得分:2)

这有一个old feature request,仍然是开放的。所以,不,你不能像任何当前版本的matplotlib那样独立设置边距。

当然,你可以编写自己的功能来做你想做的事。

import matplotlib.pyplot as plt
import numpy as np

fig, ax = plt.subplots()
ax.plot([1,2,3],[1,3,1])

def set_xmargin(ax, left=0.0, right=0.3):
    ax.set_xmargin(0)
    ax.autoscale_view()
    lim = ax.get_xlim()
    delta = np.diff(lim)
    left = lim[0] - delta*left
    right = lim[1] + delta*right
    ax.set_xlim(left,right)

set_xmargin(ax, left=0.05, right=0.2)

plt.show()

在动画中使用它需要在每个动画步骤中调用它。这可能会使动画速度变慢,但对于大多数应用程序来说仍然可以正常运行。