我使用以下代碼來生成pyplot的頂部和底部:添加填充到pyplot
plotCount = 1
for key in resultsDictionary:
count = 1
p1 = plt.subplot(5,1,plotCount)
plotCount+=1
for item in resultsDictionary[key]:
print count , item , key
plt.plot(item, count, marker='o')
count+=1
所生成的情節具有頂部和底部的結果的曲線圖「壓扁」。我怎樣才能在圖的頂部和圖的大小上添加某種填充(或者可以設置圖的確切大小(我知道最小/最大值)
如果任何人都可以指向我很欣賞