使用 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()
输出
广告