要在Matplotlib中标记数据点,可以使用plt.scatter()
函数来创建散点图,并使用plt.annotate()
函数来标记每个数据点。以下是一个示例代码:
import matplotlib.pyplot as plt # 创建数据 x = [1, 2, 3, 4, 5] y = [10, 15, 13, 18, 16] labels = ['A', 'B', 'C', 'D', 'E'] # 创建散点图 plt.scatter(x, y) # 标记每个数据点 for i, label in enumerate(labels): plt.annotate(label, (x[i], y[i]), textcoords="offset points", xytext=(0,10), ha='center') plt.show()
在这个例子中,我们创建了一个包含五个数据点的散点图,并使用plt.annotate()
函数在每个数据点上标记了对应的标签。您可以根据需要调整标签的位置和样式。