如何将 pyplot 函数附加到图形实例?(Matplotlib)

matplotlibpythondata visualization

要将 pyplot 函数附加到图形实例,我们可以使用 figure() 方法并向其添加轴。

步骤

  • 设置图形大小并调整子图之间和周围的填充。
  • 使用 figure()  方法创建新图形或激活现有图形。
  • '~.axes.Axes' 添加到图形作为子图布置的一部分。
  • 使用 set_title() 方法为此轴设置标题。
  • 要显示图形,请使用 show() 方法。

示例

import matplotlib.pyplot as plt

plt.rcParams["figure.figsize"] = [7.50, 3.50]
plt.rcParams["figure.autolayout"] = True

fig = plt.figure()

ax = fig.add_subplot()
ax.set_title("My Title!")

plt.show()

输出


相关文章