view example/pyplot_simple.py @ 174:7eef7edd47d4

link
author Jeff Hammel <k0scist@gmail.com>
date Tue, 27 Oct 2015 08:52:55 -0700
parents dc0a620a0368
children
line wrap: on
line source

import matplotlib.pyplot as plt
plt.plot([1,2,3,4])
plt.ylabel('some numbers')
plt.show()