用matplotlib绘制简单的折线
Posted aprogrammerwithoutemotion
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用matplotlib绘制简单的折线相关的知识,希望对你有一定的参考价值。
如图:
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绘制简单的折线的主要内容,如果未能解决你的问题,请参考以下文章
100天精通Python(可视化篇)——第79天:matplotlib绘制不同种类炫酷折线图代码实战(网格趋势对比百分比多条折线堆积百分比堆积多坐标子图3D折线图)