sns.despine(left=True)
%matplotlib inline
# Plot a simple histogram with binsize determined
x = sns.distplot(d, kde=False, color="b")
sns.despine(left=True)
%matplotlib inline
# Plot a kernel density estimate and rug plot
sns.distplot(d, hist=False, rug=True, color="r")
sns.despine(left=True)
%matplotlib inline
# Plot a filled kernel density estimate
sns.distplot(d, hist=False, color="g", kde_kws={"shade": True})
# Show each distribution with both violins and points
sns.violinplot(data=d, palette=pal, inner="points")
sns.heatmap(flights, annot=True, fmt="d", linewidths=.5)