これを IPython で実行すると、次のようになります。
r = (100, 300)
b = 100
plt.figure(figsize=(8, 6))
plt.subplot(3,1,1)
plt.xlabel('Picker time (ms)')
plt.hist(sequential['X0'], range=r, bins=b, color='blue')
plt.subplot(3,1,2)
plt.hist(stateful['X0'], range=r, bins=b, color='green')
plt.subplot(3,1,3)
plt.hist(standard['X0'], range=r, bins=b, color='red')
最初のプロットのxlabel
テキストは、2 番目のプロットの下で失われます。プロットは次のとおりです。
「P」の上部が突き出ているのがわかります。xlabel
これが起こらないようにサブプロットに sを提供するにはどうすればよいですか?