您好,登錄后才能下訂單哦!
這篇文章給大家介紹pyqtgraph怎么在python中使用,內容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。
pyqtgraph庫安裝:
pip install --user pyqtgraph
更快安裝方式:
pip3.8 install -i https://mirrors.aliyun.com/pypi/simple
導入方式:
import pyqtgraph as pg
自帶實例模塊:
python -m pyqtgraph.examples
繪制折線圖:
from pyqtgraph.Qt import QtGui, QtCore import pyqtgraph as pg from pyqtgraph.widgets.RemoteGraphicsView import RemoteGraphicsView app = pg.mkQApp() v = RemoteGraphicsView(debug=False) v.show() v.setWindowTitle('單1的折線圖') plt = v.pg.PlotItem() v.setCentralItem(plt) y1=[1,4,2,3,6,2,3,4,2,3] plt.plot(y1, pen='g') QtGui.QApplication.instance().exec_()
關于pyqtgraph怎么在python中使用就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。