Created
October 6, 2017 06:06
-
-
Save allenyllee/389bd3eff52739b87c9e4652d29f5725 to your computer and use it in GitHub Desktop.
sample of jupyter Notebook
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#%% | |
import matplotlib.pyplot as plt | |
import matplotlib as mpl | |
import numpy as np | |
x = np.linspace(0, 20, 100) | |
plt.plot(x, np.sin(x)) | |
plt.show() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment