0
我需要創建一個相當複雜的圖沒有pyplot - 我想使用gridspec,但我該怎麼做呢?Matplotlib GridSpec沒有pyplot
目標是一個帶有N_COL * N_ROW軸的圖格,最後一列佔據所有行。
示例代碼:
N_COL = 3
N_ROW = 3
# just demo plt call
fig = plt.figure(figsize=(10.0, 10.0))
gs = gridspec.GridSpec(N_COL, N_ROW)
# how to mate the gs object with the figure. In pyplot I would use # plt.subplot(gs[0, :])
但不是你的'fig'從'pyplot'?僅在本示例中爲 – tom
@tom。不想複製相當無用的設置代碼。這不會在多線程環境中運行 –