如何在我用matplotlib繪製的點周圍創建空間?使用matplotlib在loglog圖中設置軸限制
例如,在此圖中,左下角的點與軸截斷,但我希望點和軸之間有更多空間。
import matplotlib.pyplot as plt
x = [2**i for i in xrange(4,14)]
y = [i**2 for i in x]
plt.loglog(x,y,'ro',basex=2,basey=2)
plt.xlim([0, 2**14]) # <--- this line does nothing
plt.show()
在交互模式下,xlim
線返回(16.0, 16384)
,舊的值,而不是我想要設置的新值。
沉默失敗並沒有幫助,但當然0不能被繪製!好答案。 – Joe 2012-07-07 22:20:07