In [1]:
%matplotlib inline
import matplotlib.pyplot as plt
import numpy as np
Learn how to use Matplotlib's plt.scatter function to make a 2d scatter plot.
np.random.randn.
In [2]:
plt.scatter(np.random.randn(100), np.random.randn(100), c='g', s=50, marker='+', alpha=0.7)
plt.xlabel('Random x values')
plt.ylabel('Random y values')
plt.title('Randomness Fun!')
Out[2]:
Learn how to use Matplotlib's plt.hist function to make a 1d histogram.
np.random.randn.
In [3]:
plt.hist(np.random.randn(100), bins=5, log=True, orientation='horizontal')
plt.xlabel('Logarithmic Probability')
plt.ylabel('Random Number')
plt.title('Probability of Random Numbers')
Out[3]: