pyqtgraph/examples/SimplePlot.py

10 lines
282 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__':
2021-05-13 21:28:22 +00:00
pg.exec()