使用 Matplotlib 为散点图添加 X 轴下方的标题


要为散点图添加 X 轴下方的标题,我们可以对当前图形使用 text() 方法。

步骤

  • 使用 numpy 创建 x 和 y 数据点。

  • 使用 figure() 方法创建一个新图形或激活现有图形。

  • 使用 x 和 y 数据点绘制散点。

  • 要向图形添加标题,请使用 text() 方法。

  • 调整子图之间和周围的内边距。

  • 要显示图形,请使用 show() 方法。

实例

import numpy as np
from matplotlib import pyplot as plt
plt.rcParams["figure.figsize"] = [7.00, 3.50]
plt.rcParams["figure.autolayout"] = True
x = np.random.rand(10)
y = np.random.rand(10)
fig = plt.figure()
plt.scatter(x, y, c=y)
fig.text(.5, .0001, "Scatter Plot", ha='center')
plt.tight_layout()
plt.show()

输出

更新于: 2021 年 5 月 6 日

4K+ 查看

开启你的 职业生涯

通过完成课程获得认证

开始
广告