Improving Your Data Visualizations in Python
Nick Strayer
Instructor
Boring → eye-catching
Variety is good
"It is evident that the color-size illusion is present in a marked degree [no matter what] arrangement."
sns.barplot(x = values, y = ids)
sns.barplot(x = values, y = ids,
edgecolor = 'black')
sns.barplot(x = values, y = ids, color = 'cadetblue')
Improving Your Data Visualizations in Python