October 2018
Beginner to intermediate
676 pages
18h 30m
English
sns.relplot(x='Period', y='Smoothies', data=snacks_sales, kind='scatter')plt.title('scatter plot', size=20, color='g')
sns.relplot(x='Period', y='Smoothies', hue='Promotion', data=snacks_sales)plt.title('scatter plot with hue', size=20, color='g')
sns.relplot(x='Period', y='Smoothies', hue='Promotion', style='weekend', markers=['^', 'D'], data=snacks_sales)plt.title('scatter plot with hue and style', size=20, color='g')
sns.relplot(x='Period', y='Smoothies', hue='Promotion', style='weekend', size='Cookies', markers=['^', 'D'],data=snacks_sales)plt.title('scatter plot with hue, size and style', ...Read now
Unlock full access