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

用matplotlib绘制简单的折线

时间:2018-05-23 22:09:26      阅读:126      评论:0      收藏:0      [点我收藏+]

标签:inpu   pylot   idt   分享图片   png   输出   image   ber   fonts   

技术分享图片

如图:

import matplotlib.pyplot as plt
//引入matplotlib.pylot,用plt来替代
input_value = [1,2,3,4,5]
//设置横坐标数值
squares = [1,4,9,16,25]
//设置纵坐标数值
plt.plot(input_value,squares,linewidth=5)
//绘制图像(输入址,输出值,线宽)
plt.title("Square Number",fontsize=24)
//设置图像title
plt.xlabel("Value",fontsize=14)
//设置横坐标的名称,文字大小
plt.ylabel("Square of Value",fontsize=14)
//同上
plt.show()
//显示图片

用matplotlib绘制简单的折线

标签:inpu   pylot   idt   分享图片   png   输出   image   ber   fonts   

原文地址:https://www.cnblogs.com/aprogrammerwithoutemotion/p/9079473.html

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