Short example of using matplotlib within jupyter

From Simson Garfinkel
Revision as of 08:27, 15 June 2016 by Simson (talk | contribs) (Created page with "Enter this: %matplotlib inline import matplotlib import numpy as np import matplotlib.pyplot as plt x = np.linspace(1,10) line, = plt.plot(x, np.sin(x...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

Enter this:

   %matplotlib inline
   import matplotlib
   import numpy as np
   import matplotlib.pyplot as plt
   x = np.linspace(1,10)
   line, = plt.plot(x, np.sin(x), "--", linewidth=2)

And here is what it looks like:

Jupyter-matplotlib-demo.png