These are code samples for the following blog post: Seaborn by Example: Data Visualization and Plotting using Python

1) Just plot some 1D data using distplot


In [7]:
import numpy as np
import seaborn as sns

%matplotlib inline

In [8]:
x = np.random.normal(size=100)

sns.distplot(x)


Out[8]:
<matplotlib.axes._subplots.AxesSubplot at 0x7f5ec835ccf8>