Created
November 19, 2017 09:32
-
-
Save erikaris/9918cfd9cff9cf550d638c63bf196e5a 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
# modified from Coursera.org | |
plt.figure() | |
Y = np.random.normal(loc=0.0, scale=1.0, size=10000) | |
X = np.random.random(size=10000) | |
plt.hist2d(X, Y, bins=25) | |
plt.colorbar() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment