码迷,mamicode.com
首页 > 其他好文 > 详细

二. 图例和标签

时间:2015-11-04 14:41:48      阅读:181      评论:0      收藏:0      [点我收藏+]

标签:

在给画出的直线加上图例和标签可以参照下面的代码

import matplotlib.pyplot as plt

x1 = [1,2,3]
y1 = [5,7,4]

x2 = [1,2,3]
y2 = [10,14,12]

plt.plot(x1,y1,label=line1)
plt.plot(x2,y2,label=line2)
plt.xlabel(x)
plt.ylabel(y)

plt.title(lines\n) #\n 可以使标题和图有一定的距离
plt.legend()
plt.show()

如下图所示:

技术分享

二. 图例和标签

标签:

原文地址:http://www.cnblogs.com/flagub/p/4935813.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!