October 2018
Beginner to intermediate
676 pages
18h 30m
English
We will draw four point plots with different options:
sns.catplot(data=snacks_sales, kind='point', ci=99.99, capsize=0.25, height=4, aspect=2, order=['Cakes', 'Pies', 'Cookies', 'Smoothies', 'Coffee', 'weekday', 'Period'])plt.title('1. Point Plot with wide form dataset', size=15, color='g', weight='bold');
sns.catplot(x='Item', y='Sales', data=long_sales, kind='point', markers='D', ci='sd', height=4, aspect=2) # long form data frameplt.title('2. Point Plot with ...Read now
Unlock full access