Skip to content

Instantly share code, notes, and snippets.

Created July 18, 2016 18:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/3604c1602b73316f7e5c705322ecb8ba to your computer and use it in GitHub Desktop.
Save anonymous/3604c1602b73316f7e5c705322ecb8ba to your computer and use it in GitHub Desktop.
How to use matplotlib inline with JupyterLab in MacOSX and Anaconda
%matplotlib inline
# 別のセルに↓
import numpy as np
import matplotlib.pyplot as plt
x = np.arange(0, 10, 0.1)
y = np.cos(x)
plt.plot(x, y)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment