matplotlib画散点图,并在散点处打上相应标签

运行环境:

py3.6
matplotlib 2.1.2

x = [2,4,6,7,8,5,4,3]
y = [3,6,5,8,4,3,2,4]
txt = ['我','今','晚','上','吃','了','个','鲸']

import matplotlib.pyplot as plt
plt.rcParams['font.sans-serif']=['SimHei'] #用来正常显示中文标签
plt.scatter(x, y)
for i in range(len(x)):
    plt.annotate(txt[i], xy = (x[i], y[i]), xytext = (x[i]+0.1, y[i]+0.1)) # 这里xy是需要标记的坐标,xytext是对应的标签坐标
plt.show()

PS:感觉好土。。。

posted @ 2018-04-25 19:48  AloisWei  阅读(21146)  评论(4编辑  收藏  举报