Skip to content

Instantly share code, notes, and snippets.

@allenyllee
Created October 6, 2017 06:06
Show Gist options
  • Save allenyllee/389bd3eff52739b87c9e4652d29f5725 to your computer and use it in GitHub Desktop.
Save allenyllee/389bd3eff52739b87c9e4652d29f5725 to your computer and use it in GitHub Desktop.
sample of jupyter Notebook
#%%
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