MATPLOTLIB具有名称的多个位置点

时间:2018-08-02 14:08:00

标签: python matplotlib

我需要绘制多个点并给出位置的名称,但是我很难将x和y值链接到csv文件并将其插入文本位置。

fig = plt.figure()

ax = fig.add_subplot(111)

xvalues = pd.read_csv("xanyvalues.csv", dtype=int)

colxvalues=xvalues["x"]
colyvalues=yvalues["y"]

for x in colyvalues(x):
    for y in colyvalues(y):
        ax.text(x, y, ". xy co. ("& x &", " & Y &")", transform=fig.transFigure);

plt.show()

0 个答案:

没有答案