view example/pyplot_simple.py @ 191:09bcb48cc067

[documentation] more on what this is and what it depends on
author Jeff Hammel <k0scist@gmail.com>
date Thu, 03 Aug 2017 16:22:45 -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()