0
是否有任何可能繪製pyqtplot中的pcolor,就像matplotlib可以? 和有沒有什麼好的例子?
如何將軸添加到pyqtgraph圖?pyqtgraph設施pcolor陰謀llike matplotlib
是否有任何可能繪製pyqtplot中的pcolor,就像matplotlib可以? 和有沒有什麼好的例子?
如何將軸添加到pyqtgraph圖?pyqtgraph設施pcolor陰謀llike matplotlib
試試這個上手:
import pyqtgraph as pg
x = [1, 2, 3, 4, 5]
y = [1, 4, 9, 16, 25]
pg.plot(x, y, title="Simple Example", labels={'left': 'Here is the y-axis', 'bottom': 'Here is the x-axis'})
我看着文檔here構建一個例子。
你還可以嘗試:
import pyqtgraph.examples
pyqtgraph.examples.run()
看到更多的例子
我在上面提到的Google小組中搜索過很多很好的功能。它有很多功能匹配我的問題。謝謝 – user1482636