Seorn Bar Plot mengurutkan untuk hari kerja

# adapted from answer of Stack Overflow user in the source link

order = ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"]
sns.barplot(x = df['weekday'], y = df['col'], order = order)
wolf-like_hunter