1
我想使兩個圖表的底部有一個小得多的高度。我嘗試了set_yscale(1,.5)
,但它並不成熟,正在尋找如何做到這一點。在文檔中找不到任何內容。Matplotlib - 共享x軸的垂直高度圖
import matplotlib.pyplot as plt
import numpy as np
# Simple data to display in various forms
x = np.linspace(0, 2 * np.pi, 400)
y = np.sin(x ** 2)
# Two subplots, the axes array is 1-d
f, axarr = plt.subplots(2, sharex=True)
axarr[0].plot(x, y)
axarr[0].set_title('Sharing X axis')
axarr[1].scatter(x, y)
axarr[1].set_yscale(1,.5)
plt.show()
你的意思是每個小區下的空白? – elyase
@elyase不,我的意思是圖形的實際高度。現在頂部和底部圖形的高度是相等的。我希望底部圖形的高度爲頂部圖形高度的一半。 – user2242044