Matplotlib 中的 axes.flat 做了什么?


Axes.flat 表示对数组进行 1D 迭代。通过一个示例演示 axes.flat 的用法。

步骤

  • 设置图形大小和 subplot 之间以及周边的填充。

  • 使用 subplots() 方法创建一个图形和一组子图。

  • 使用 numpy 创建 xy 数据点。

  • 使用 axes.flat 并遍历所有轴(步骤 2)。

  • 使用 plot() 方法绘制 x 和 y 数据点。

  • 要显示图表,请使用 show() 方法。

示例

import numpy as np
from matplotlib import pyplot as plt

plt.rcParams["figure.figsize"] = [7.50, 3.50]
plt.rcParams["figure.autolayout"] = True
fig, axes = plt.subplots(nrows=2, ncols=3)
x = np.random.rand(10)
y = np.random.rand(10)
for _, ax in enumerate(axes.flat):
   ax.plot(x, y)
plt.show()

输出

更新于: 2021-06-01

4K+ 浏览

开启你的 职业生涯

完成课程即可获得认证

开始学习
广告