python subplot 调整子图的大小
fig, axs = plt.subplots(3, 2,constrained_layout=True, figsize=(10, 10))
通过
figsize=(10, 10)
来调节,
感觉不是最佳的方案,先用吧
fig, axs = plt.subplots(3, 2,constrained_layout=True, figsize=(10, 10))
通过
figsize=(10, 10)
来调节,
感觉不是最佳的方案,先用吧