如何在pyplot中的绘图标记上放置标签(不是散点图)

时间:2019-05-15 10:23:17

标签: python matplotlib plot

我正在绘制“精确度/调用曲线”,并希望在图中为每个标记放置特定的标签。

以下是生成绘图的代码:

from matplotlib import pyplot

pyplot.plot([0, 100], [94, 100], linestyle='--')

pyplot.xlabel("Recall")
pyplot.ylabel("Precision")
list_of_rec = [
99.96,99.96,99.96,99.96,99.96,99.96,99.8,98.25,96.59,93.37,83.74,63.53,48.72,25.05,10.7,4.27,0.73,0.23]

list_of_prec = [
94.12,94.12,94.12,94.12,94.12,94.12,94.42,95.14,95.92,96.57,97.33,98.26,98.72,99.0,99.0,99.17,99.75,99.19]

list_of_markers = [
    0.0, 0.5, 1.0, 1.5, 2.0, 2.5, 3.0, 3.5, 4.0, 4.5, 5.0, 5.5, 6.0, 6.5, 7.0, 7.5, 8.0, 8.5
]

# plot the precision-recall curve for the model
pyplot.plot(list_of_rec, list_of_prec, marker='*', markersize=8)

pyplot.show()

这给了我以下情节:

enter image description here

对于图表中的每个标记(*),我想用list_of_markers中的文本标记它们。似乎找不到找到将文本标签列表传递到绘图的选项,任何帮助都将得到帮助。

1 个答案:

答案 0 :(得分:-1)

您可以通过遍历每个标记并将标签作为文本注释来注释每个标记

for x, y, text in zip(list_of_rec, list_of_prec, list_of_markers):
    plt.text(x, y, text)

enter image description here