Matplotlib 中的 axes.flat 是什么?
Axes.flat 是一个对数组的1D迭代器。接下来我们通过一个示例来看如何使用 axes.flat 。
步骤
- 设置图形大小并调整子图之间和周围的填充。
-
使用 subplots() 方法创建图形和一组子图。
-
使用numpy创建 x 和 y 数据点。
-
使用 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()