# HG changeset patch # User Jeff Hammel # Date 1435947061 25200 # Node ID dc0a620a03682fe880e83c1d0f36703586f351a3 # Parent 4372fb852384403c432c610516f3b7a7ab74c009 add another example diff -r 4372fb852384 -r dc0a620a0368 example/pyplot_simple.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/example/pyplot_simple.py Fri Jul 03 11:11:01 2015 -0700 @@ -0,0 +1,4 @@ +import matplotlib.pyplot as plt +plt.plot([1,2,3,4]) +plt.ylabel('some numbers') +plt.show()