pyqtgraph/examples/CLIexample.py

22 lines
600 B
Python
Raw Normal View History

2012-03-17 15:47:20 +00:00
import initExample ## Add path to library (just for examples; you do not need this)
2012-03-02 03:53:52 +00:00
from pyqtgraph.Qt import QtGui, QtCore
import numpy as np
import pyqtgraph as pg
app = QtGui.QApplication([])
data = np.random.normal(size=1000)
pg.plot(data, title="Simplest possible plotting example")
data = np.random.normal(size=(500,500))
pg.show(data, title="Simplest possible image example")
2012-03-17 15:47:20 +00:00
## Start Qt event loop unless running in interactive mode or using pyside.
if __name__ == '__main__':
import sys
if sys.flags.interactive != 1 or not hasattr(QtCore, 'PYQT_VERSION'):
app.exec_()