fig, axs = plt.subplots(3, 4, figsize=(15, 10))去掉第十一和第十二张图
时间: 2023-07-08 17:31:11 浏览: 96
matplotilb中fig,ax = plt.subplots()的使用
可以使用 `axs[-1, -1].remove()` 和 `axs[-1, -2].remove()` 去掉第十一和第十二张图,修改后的代码如下:
```
fig, axs = plt.subplots(3, 4, figsize=(15, 10))
axs[-1, -1].remove() # 去掉第十二张子图
axs[-1, -2].remove() # 去掉第十一张子图
```
阅读全文