notebook.community
Edit and run
In [2]: %matplotlib inline
%matplotlib inline
In [4]: from matplotlib import pyplot pyplot.style.use('ggplot') x = [0, 1, 2, 3, 4] y = [0, 2, 4, 6, 8] pyplot.plot(x) pyplot.plot(y) pyplot.show()
from matplotlib import pyplot pyplot.style.use('ggplot') x = [0, 1, 2, 3, 4] y = [0, 2, 4, 6, 8] pyplot.plot(x) pyplot.plot(y) pyplot.show()