Skip to content

Instantly share code, notes, and snippets.

@shubham-singh-ss
Created July 4, 2019 04:59
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 shubham-singh-ss/7b176f9e74df1c7d694df5d8576b7f8c to your computer and use it in GitHub Desktop.
Save shubham-singh-ss/7b176f9e74df1c7d694df5d8576b7f8c to your computer and use it in GitHub Desktop.
%matplotlib inline
import matplotlib.pyplot as plt
from numpy.random import normal
x = normal(size=100)
plt.hist(x, bins=20)
plt.show()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment