Created
July 4, 2019 04:59
-
-
Save shubham-singh-ss/7b176f9e74df1c7d694df5d8576b7f8c to your computer and use it in GitHub Desktop.
This file contains hidden or 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
%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