用 Python 改善你的資料視覺化
Nick Strayer
Instructor

單調 → 吸睛
多樣更好



「不論採用何種排列方式,色彩—尺寸錯覺都明顯存在。」

sns.barplot(x = values, y = ids)

sns.barplot(x = values, y = ids,
edgecolor = 'black')

sns.barplot(x = values, y = ids, color = 'cadetblue')

用 Python 改善你的資料視覺化