October 2018
Beginner to intermediate
676 pages
18h 30m
English
Here, we will use a long form dataset and plot the sales of all the items:
sns.catplot(x='Item', y='Sales', data=long_sales, kind='box', height=4, aspect=2);
sns.catplot(x='Item', y='Sales', data=long_sales, kind='box', hue='Promotion', height=4, aspect=2);
sns.catplot(x='daywk', y='Sales', data=long_sales, kind='box', hue='weekend', order=day_order, height=4, aspect=2);
sns.catplot(x='Item', y='Sales', data=long_sales, kind='boxen', height=4, aspect=2); sns.catplot(x='Item', y='Sales', data=long_sales, kind='boxen', hue='Promotion', height=4, aspect=2); ...
Read now
Unlock full access