2014-01-31 166 views

回答

2

如果你只需要兩個尺度,那麼你可以簡單的使用twinx和/或twiny

fig, ax = plt.subplots(1, 1) 
x = np.arange(11) 
ax.plot(x, 'r') 
ax2 = ax.twinx() 
ax2.plot(x ** 2, 'g') 
plt.draw() 

我需要兩個以上的看到matplotlib: adding second axes() with transparent background?或可考慮寄生軸。

+0

嗨,這是我正在尋找,但它不工作與mpld3.plot(),當我嘗試在瀏覽器上呈現圖形。縮放功能禁用並僅允許1軸放大。 –

相關問題