2013-02-13 18:00:50 +00:00
|
|
|
import initExample ## Add path to library (just for examples; you do not need this)
|
|
|
|
|
|
|
|
import pyqtgraph as pg
|
2014-01-30 15:50:07 +00:00
|
|
|
import pyqtgraph.exporters
|
2013-02-13 18:00:50 +00:00
|
|
|
import numpy as np
|
2013-03-26 17:46:26 +00:00
|
|
|
plt = pg.plot(np.random.normal(size=100), title="Simplest possible plotting example")
|
|
|
|
|
2014-01-30 15:50:07 +00:00
|
|
|
## Start Qt event loop unless running in interactive mode or using pyside.
|
2013-02-13 18:00:50 +00:00
|
|
|
if __name__ == '__main__':
|
|
|
|
import sys
|
2014-02-02 15:45:32 +00:00
|
|
|
if sys.flags.interactive != 1 or not hasattr(pg.QtCore, 'PYQT_VERSION'):
|
2013-02-13 18:00:50 +00:00
|
|
|
pg.QtGui.QApplication.exec_()
|