2010-03-22 05:48:52 +00:00
|
|
|
#!/usr/bin/python
|
|
|
|
# -*- coding: utf-8 -*-
|
2010-03-22 06:21:56 +00:00
|
|
|
## Add path to library (just for examples; you do not need this)
|
2012-12-26 22:51:52 +00:00
|
|
|
import initExample
|
2010-03-22 05:48:52 +00:00
|
|
|
|
2019-11-12 17:02:08 +00:00
|
|
|
import numpy as np
|
2010-03-22 05:48:52 +00:00
|
|
|
from numpy import linspace
|
2012-03-02 03:53:52 +00:00
|
|
|
from pyqtgraph.Qt import QtGui, QtCore
|
2011-04-05 14:35:50 +00:00
|
|
|
import pyqtgraph as pg
|
2012-03-02 02:55:32 +00:00
|
|
|
from pyqtgraph import MultiPlotWidget
|
2010-03-22 06:21:56 +00:00
|
|
|
try:
|
2014-01-21 03:15:14 +00:00
|
|
|
from pyqtgraph.metaarray import *
|
2010-03-22 06:21:56 +00:00
|
|
|
except:
|
2012-05-11 22:05:41 +00:00
|
|
|
print("MultiPlot is only used with MetaArray for now (and you do not have the metaarray package)")
|
2010-03-22 06:21:56 +00:00
|
|
|
exit()
|
2014-01-21 03:15:14 +00:00
|
|
|
|
2010-03-22 05:48:52 +00:00
|
|
|
app = QtGui.QApplication([])
|
|
|
|
mw = QtGui.QMainWindow()
|
2011-06-14 23:47:52 +00:00
|
|
|
mw.resize(800,800)
|
2010-03-22 05:48:52 +00:00
|
|
|
pw = MultiPlotWidget()
|
|
|
|
mw.setCentralWidget(pw)
|
|
|
|
mw.show()
|
|
|
|
|
2019-11-12 17:02:08 +00:00
|
|
|
data = np.random.normal(size=(3, 1000)) * np.array([[0.1], [1e-5], [1]])
|
2014-01-25 13:50:31 +00:00
|
|
|
ma = MetaArray(data, info=[
|
|
|
|
{'name': 'Signal', 'cols': [
|
|
|
|
{'name': 'Col1', 'units': 'V'},
|
|
|
|
{'name': 'Col2', 'units': 'A'},
|
|
|
|
{'name': 'Col3'},
|
|
|
|
]},
|
|
|
|
{'name': 'Time', 'values': linspace(0., 1., 1000), 'units': 's'}
|
|
|
|
])
|
2010-03-22 05:48:52 +00:00
|
|
|
pw.plot(ma)
|
2010-03-22 06:21:56 +00:00
|
|
|
|
2011-04-05 14:35:50 +00:00
|
|
|
## Start Qt event loop unless running in interactive mode.
|
2012-12-05 05:25:45 +00:00
|
|
|
if __name__ == '__main__':
|
|
|
|
import sys
|
|
|
|
if (sys.flags.interactive != 1) or not hasattr(QtCore, 'PYQT_VERSION'):
|
|
|
|
QtGui.QApplication.instance().exec_()
|
2011-04-05 14:35:50 +00:00
|
|
|
|