comparison example/pyplot_simple.py @ 172:dc0a620a0368

add another example
author Jeff Hammel <k0scist@gmail.com>
date Fri, 03 Jul 2015 11:11:01 -0700
parents
children
comparison
equal deleted inserted replaced
171:4372fb852384 172:dc0a620a0368
1 import matplotlib.pyplot as plt
2 plt.plot([1,2,3,4])
3 plt.ylabel('some numbers')
4 plt.show()