4951bd743e
* Replace main stanza with PyQt6 compatable variant * Use fn.mkQApp instead * remove needless comments
10 lines
292 B
Python
10 lines
292 B
Python
import initExample ## Add path to library (just for examples; you do not need this)
|
|
|
|
import pyqtgraph as pg
|
|
import pyqtgraph.exporters
|
|
import numpy as np
|
|
plt = pg.plot(np.random.normal(size=100), title="Simplest possible plotting example")
|
|
|
|
if __name__ == '__main__':
|
|
pg.mkQApp().exec_()
|