从帮助:
set_xlim:设置 xaxis 的数据限制。
set_xbound:设置 x 轴的数值上下界。
这不是很清楚,所以假设我绘制了一些东西:
import matplotlib.pylab as plt
fig, ax = plt.subplots(1, 1)
ax.plot(xrange(10), xrange(10))
现在,要么我做:
ax.set_xlim(2, 7)
或者:
ax.set_xbound(2, 7)
我看不出有什么区别。我可以拖动绘图,所有线都绘制在 0 到 9 之间。