Add more examples from the HP data-set.
[matplotlib-cdsw] / 001-hello-plot.py
index 227b56cdd079ce3caa21f19c87bb8096b71759da..06904708e84e353b2a2366e5ba283685ed693375 100644 (file)
@@ -8,6 +8,6 @@ A first plot with matplotlib
 
 import matplotlib.pyplot as plt 
 figure, axis = plt.subplots(1)
 
 import matplotlib.pyplot as plt 
 figure, axis = plt.subplots(1)
-plt.plot([1,2,3], [1,2,3])
+plt.plot([1,2,3], [2,4,8])
 plt.show()
 
 plt.show()
 

Benjamin Mako Hill || Want to submit a patch?