pyqtgraph/examples/SimplePlot.py

10 lines
282 B
Python
Raw Normal View History

2013-02-13 13:00:50 -05: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 13:00:50 -05:00
import numpy as np
2013-03-26 13:46:26 -04:00
plt = pg.plot(np.random.normal(size=100), title="Simplest possible plotting example")
2013-02-13 13:00:50 -05:00
if __name__ == '__main__':
2021-05-14 05:28:22 +08:00
pg.exec()