私の計画はGridSpec(4,1)
、サブプロットの 4x4 グリッドを作成するために 4 つのグリッドスペックを持つことです。4 つのサブプロットの各行の x 軸に水平線を追加したいと思います。matplotlib.lines.Line2D を見ましたが、実際にはわかりませんでした。助言がありますか?16 個の個別のグラフのように見えないように、図を視覚的に単純化しようとしています。
下の図では、最初の 2 つのグリッドスペックしかアップしていませんが、達成したいことについてより良いアイデアを提供してくれることを願っています。
ありがとう!乾杯
コード (グラフ部分):
#---the graph---
fig = plt.figure(facecolor='white')
gs1 = GridSpec(4,1)
gs1.update(left = 0.15, right = .3375 , wspace=0.02)
ax1 = plt.subplot(gs1[3,0])
ax2 = plt.subplot(gs1[2,0])
ax3 = plt.subplot(gs1[1,0])
ax4 = plt.subplot(gs1[0,0])
gs2 = GridSpec(4,1)
gs2.update(left = 0.3875, right = .575, wspace=.25)
ax1 = plt.subplot(gs2[3,0])
ax2 = plt.subplot(gs2[2,0])
ax3 = plt.subplot(gs2[1,0])
ax4 = plt.subplot(gs2[0,0])
show()