python下如何pyqtgraph高速画图

2025-11-05 15:52:05

1、安装PyQtGraph:打开终端,使用命令pip install PyQtGraph

python下如何pyqtgraph高速画图

2、安装PySide: 在终端使用命令pip install PySide安装

3、PyQtGraph使得从命令行可视化数据变得非常容易。注意:

import pyqtgraph as pg

pg.plot(data)   # data can be a list of values or a numpy array

python下如何pyqtgraph高速画图

4、运行官方小示例:

import pyqtgraph.examples

pyqtgraph.examples.run()

运行后会弹出如图窗口

python下如何pyqtgraph高速画图

5、在窗口的Qt Library选项,选择PySide,在Graphics System选项,选择native

python下如何pyqtgraph高速画图

6、点击run example按钮,弹出示例窗口运行

python下如何pyqtgraph高速画图

7、使用代码:

pg.setConfigOption('background', 'w')

pg.setConfigOption('foreground', 'k')

修改示例背景

python下如何pyqtgraph高速画图

python下如何pyqtgraph高速画图

声明:本网站引用、摘录或转载内容仅供网站访问者交流或参考,不代表本站立场,如存在版权或非法内容,请联系站长删除,联系邮箱:site.kefu@qq.com。
猜你喜欢