X-Git-Url: https://projects.mako.cc/source/matplotlib-cdsw/blobdiff_plain/0a6b1b4db717da540e57c15eb7506d2d8f75da58..7bd9bbbbb11d7585b76e63e354c0c779d5a8c547:/001-hello-plot.py diff --git a/001-hello-plot.py b/001-hello-plot.py index 227b56c..0690470 100644 --- a/001-hello-plot.py +++ b/001-hello-plot.py @@ -8,6 +8,6 @@ A first plot with matplotlib 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()