使用 Matplotlib 在散点图的 X 轴下方添加标题
matplotlibserver side programmingprogramming
要为散点图的 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, "散点图", ha='center') plt.tight_layout() plt.show()