Matplotlib 中的 axes.flat 做了什么?
Axes.flat 表示对数组进行 1D 迭代。通过一个示例演示 axes.flat 的用法。
步骤
设置图形大小和 subplot 之间以及周边的填充。
使用 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()
输出
广告