merged in all the code from ariel's branches and moved wikibios to a subdir
[matplotlib-cdsw] / 001-hello-plot.py
1 """ 
2
3 hello_plot.py
4
5 A first plot with matplotlib
6
7 """
8
9 import matplotlib.pyplot as plt 
10 figure, axis = plt.subplots(1)
11 axis.plot([1,2,3], [2,4,8])
12 plt.show()
13

Benjamin Mako Hill || Want to submit a patch?