pyqtgraph/examples/SimplePlot.py

10 lines
292 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 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")
2013-02-13 18:00:50 +00:00
if __name__ == '__main__':
pg.mkQApp().exec_()