pyqtgraph/examples/SimplePlot.py

11 lines
371 B
Python
Raw Normal View History

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
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")
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_()