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

此处为摘抄代码

时间:2019-09-20 19:13:55      阅读:78      评论:0      收藏:0      [点我收藏+]

标签:RKE   rom   ams   odi   range   end   code   生效   otto   

 1 # encoding=utf-8
 2 import matplotlib.pyplot as plt
 3 from pylab import *                 #支持中文
 4 mpl.rcParams[font.sans-serif] = [SimHei]
 5  
 6 names = [5, 10, 15, 20, 25]
 7 x = range(len(names))
 8 y = [0.855, 0.84, 0.835, 0.815, 0.81]
 9 y1=[0.86,0.85,0.853,0.849,0.83]
10 #plt.plot(x, y, ‘ro-‘)
11 #plt.plot(x, y1, ‘bo-‘)
12 #pl.xlim(-1, 11) # 限定横轴的范围
13 #pl.ylim(-1, 110) # 限定纵轴的范围
14 plt.plot(x, y, marker=o, mec=r, mfc=w,label=uy=x^2曲线图)
15 plt.plot(x, y1, marker=*, ms=10,label=uy=x^3曲线图)
16 plt.legend() # 让图例生效
17 plt.xticks(x, names, rotation=45)
18 plt.margins(0)
19 plt.subplots_adjust(bottom=0.15)
20 plt.xlabel(u"time(s)邻居") #X轴标签
21 plt.ylabel("RMSE") #Y轴标签
22 plt.title("A simple plot") #标题
23  
24 plt.show()

 

此处为摘抄代码

标签:RKE   rom   ams   odi   range   end   code   生效   otto   

原文地址:https://www.cnblogs.com/dog-and-cat/p/11558788.html

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