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

绘制不同样式不同颜色的线

时间:2020-04-06 17:38:20      阅读:80      评论:0      收藏:0      [点我收藏+]

标签:class   atp   erp   image   技术   ace   inf   img   port   

 1 import matplotlib.pyplot as plt 
 2 import numpy as np 
 3 x = np.linspace(0,10,100)
 4 #添加legend()图例,给plot方法添加参数label
 5 plt.plot(x,x+0,--g,label=--g) 
 6 plt.plot(x,x+1,-.r,label=-.r)
 7 plt.plot(x,x+2,:b,label=:b)
 8 plt.plot(x,x+3,.k,label=.k)
 9 plt.plot(x,x+4,,c,label=,c)
10 plt.plot(x,x+5,*y,label=*y)
11 plt.plot(x,x+2,dm,label=dm)
12 #添加图例右下角lower right  左上角upper left 边框  透明度  阴影  边框宽度
13 plt.legend(loc=lower right,fancybox=True,framealpha=1,shadow=True,borderpad=1)
14 plt.show()

技术图片

 

 

 

绘制不同样式不同颜色的线

标签:class   atp   erp   image   技术   ace   inf   img   port   

原文地址:https://www.cnblogs.com/monsterhy123/p/12642784.html

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