fig, axs = plt.subplots返回值
时间: 2023-11-02 22:27:01 浏览: 83
matplotilb中fig,ax = plt.subplots()的使用
函数 `plt.subplots()` 返回一个元组 `(fig, axs)`,其中 `fig` 是一个 `matplotlib.figure.Figure` 对象,而 `axs` 是一个由坐标轴对象组成的 numpy 数组。
我们可以使用 `fig` 对象来设置图形的属性,如标题、大小、背景颜色等。而 `axs` 数组可以用来访问和修改每个子图的属性,例如设置坐标轴标签、限制坐标轴范围、绘制数据等。通常,我们会在 `axs` 数组上调用 `plot`、`scatter`、`bar` 等方法来绘制图形。
阅读全文