plt.subplot 全部参数
时间: 2023-10-14 13:29:53 浏览: 51
python matplotlib在一张画布上画多个图的两种方法,plt.subplot(),plt.subplots()。
plt.subplot() 函数的全部参数如下:
```
subplot(nrows, ncols, index, **kwargs)
```
- nrows: 子图的行数。
- ncols: 子图的列数。
- index: 子图的编号。从左上角开始,行优先。例如,如果 nrows=2, ncols=3,则左上角的子图编号为 1,右下角的子图编号为 6。
- **kwargs: 其他可选参数,例如 sharex、sharey、projection 等。
阅读全文