In [12]:
import scipy as sp
import matplotlib as mpl
# import seaborn as sns
import matplotlib.pyplot as plt
%matplotlib inline
plt.style.use('ggplot')
In [17]:
plt.plot(sp.randn(1000), sp.randn(1000), 'o', alpha=0.5)
Out[17]: