我应该如何作为 Axis,Axes 或 Figure 在函数中传递 matplotlib 对象?
如需在函数中传递 matplotlib 对象;作为 Axis、Axes 或 figure,我们可以采取以下步骤 −
- 设置图形大小并调整子绘图之间的和周围的填充。
- 在 plot() 方法中,将 x 和 y 数据点绘制在轴 ax 上。
- 在 profile() 方法中,创建一个图形和一组子绘图。迭代轴并传递 plot() 方法以绘制图形。
- 使用 3 行和 4 列调用 profile() 方法。
- 若要显示图形,请使用 show() 方法。
示例
import numpy as np from matplotlib import pyplot as plt plt.rcParams["figure.figsize"] = [7.00, 3.50] plt.rcParams["figure.autolayout"] = True def plot(ax, x, y): ax.plot(x, y) def profile(rows, cols): fig, axes = plt.subplots(rows, cols) for ax in axes: for a in ax: plot(a, np.random.rand(10), np.random.rand(10)) profile(3, 4) plt.show()
输出
它将生成以下输出
广告