In [4]:
%matplotlib inline
import numpy as np
import matplotlib.pyplot as plt
import scipy.stats as stat

In [10]:
N = 1e5
x = np.random.rand(N)
y = np.random.randn(N)


/usr/local/lib/python3.5/dist-packages/ipykernel/__main__.py:2: VisibleDeprecationWarning: using a non-integer number instead of an integer will result in an error in the future
  from ipykernel import kernelapp as app
/usr/local/lib/python3.5/dist-packages/ipykernel/__main__.py:3: VisibleDeprecationWarning: using a non-integer number instead of an integer will result in an error in the future
  app.launch_new_instance()

In [13]:
plt.hist(y, bins=50)
plt.show()



In [ ]: