X-Git-Url: https://projects.mako.cc/source/matplotlib-cdsw/blobdiff_plain/d4f04c7ca4cc5f8a066886fc8c4d18cbc12ea3cf..224a19e5f73433a38828d6bd8a655fce7c220058:/001-hello-plot.py?ds=sidebyside diff --git a/001-hello-plot.py b/001-hello-plot.py new file mode 100644 index 0000000..ef749ff --- /dev/null +++ b/001-hello-plot.py @@ -0,0 +1,13 @@ +""" + +hello_plot.py + +A first plot with matplotlib + +""" + +import matplotlib.pyplot as plt +figure = plt.figure() +axis = figure.add_subplot(111) +plt.plot([1,2,3], [1,2,3]) +plt.show()