Matplotlib 中的 axes.flat 是什么?

Matplotlib 中的 axes.flat 是什么?

Axes.flat 是一个对数组的1D迭代器。接下来我们通过一个示例来看如何使用 axes.flat

步骤

  • 设置图形大小并调整子图之间和周围的填充。

  • 使用 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()

输出

Matplotlib 中的 axes.flat 是什么?

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程