python学习之使用Matplotlib画实时的动态折线图的示例代码

作者:象驮着的云 时间:2021-03-03 17:33:31 

有时,为了方便看数据的变化情况,需要画一个动态图来看整体的变化情况。主要就是用Matplotlib库。

首先,说明plot函数的说明。


plt.plot(x,y,format_string,**kwargs)

x是x轴数据,y是y轴数据。x与y维度一定要对应。

format_string控制曲线的格式字串

下面详细说明:

  • color(c):线条颜色

  • linestyle(ls):线条样式

  • linewidth(lw):线的粗细

关于标记的一些参数:

  • marker:标记样式

  • markeredgecolor(mec):标记边缘颜色

  • markeredgewidth(mew):标记边缘宽度

  • markerfacecolor(mfc):标记中心颜色

  • markersize(ms):标记大小

另外,marker关键字参数可以和color以及linestyle这两个关键字参数合并为一个字符串。
例如:‘ro-'表示红色的直线,标记为圆形

线条color颜色:

python学习之使用Matplotlib画实时的动态折线图的示例代码

线条样式(linestyle):

python学习之使用Matplotlib画实时的动态折线图的示例代码

标记(marker)参数:

python学习之使用Matplotlib画实时的动态折线图的示例代码

程序demo如下:

得到的结果是循环的sin(x)的折线图


'''
动态折线图演示示例
'''

import numpy as np
import matplotlib.pyplot as plt

plt.ion()
plt.figure(1)
t_list = []
result_list = []
t = 0

while True:
if t >= 10 * np.pi:
 plt.clf()
 t = 0
 t_list.clear()
 result_list.clear()
else:
 t += np.pi / 4
 t_list.append(t)
 result_list.append(np.sin(t))
 plt.plot(t_list, result_list,c='r',ls='-', marker='o', mec='b',mfc='w') ## 保存历史数据
 #plt.plot(t, np.sin(t), 'o')
 plt.pause(0.1)

得到的结果如下:

python学习之使用Matplotlib画实时的动态折线图的示例代码

参考博客链接:https://blog.csdn.net/zhanghao3389/article/details/82685072

https://blog.csdn.net/u013468614/article/details/58689735

来源:https://blog.csdn.net/weixin_37552816/article/details/89555200

标签:Matplotlib,实时,动态折线图
0
投稿

猜你喜欢

  • idea连接SQL Server数据库的详细图文教程

    2024-01-14 05:32:54
  • 海量数据库的查询优化及分页算法方案集合2/2

    2024-01-22 22:09:38
  • python温度转换华氏温度实现代码

    2021-09-01 22:30:49
  • Django ORM 查询表中某列字段值的方法

    2022-05-08 06:42:20
  • 基于Python socket实现简易网络聊天室

    2021-10-19 09:10:30
  • pytest解读一次请求多个fixtures及多次请求

    2023-07-20 01:13:43
  • Python 查看文件的编码格式方法

    2021-11-01 10:50:39
  • php基于协程实现异步的方法分析

    2023-06-11 10:08:39
  • Mysql锁内部实现机制之C源码解析

    2024-01-12 21:13:25
  • Oracle数据表中的死锁情况解决方法

    2024-01-15 11:23:01
  • javascript 常见汉字转换成拼音工具

    2008-03-03 16:54:00
  • MySql 备忘录

    2024-01-22 12:56:48
  • 谈ASP的未来

    2009-03-24 20:35:00
  • Vue watch原理源码层深入讲解

    2024-04-30 10:40:58
  • Python 编码规范(Google Python Style Guide)

    2023-04-12 03:49:35
  • Windows系统下MySQL无法启动的万能解决方法

    2024-01-16 10:59:26
  • SQL Server 2016 CTP2.2安装配置方法图文教程

    2024-01-18 19:04:29
  • 教你快速了解公共MySQL的数据库服务器层

    2008-12-17 17:10:00
  • JavaScript闭包详解

    2024-04-19 10:06:52
  • Python区块链客户端类开发教程

    2023-06-18 03:05:51
  • asp之家 网络编程 m.aspxhome.com