seaborn distribution plot of a variable with 5 classes code example
Example 1: distribution seaborn
x = np.random.normal(size=100)
sns.distplot(x);
Example 2: countplot for different classes in a column
>>> ax = sns.countplot(x="who", data=titanic, palette="Set3")