Tuesday, March 9, 2010

March Madness Challenge - MMC09

Today only a little play around with plotting. I guess tomorrow when I have more time I will plot my own histogram.

1 #! /usr/bin/python
2
3 import matplotlib.pyplot as plt
4
5 plt.plot([0,2,1,3])
6 plt.ylabel('value')
7 plt.xlabel('plot test')
8 plt.show()

No comments:

Post a Comment