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

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

要将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("我的标题!")

plt.show()

输出

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

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程