seaborn bar plot sort for weekday

Solutions on MaxInterview for seaborn bar plot sort for weekday by the best coders in the world

showing results for - "seaborn bar plot sort for weekday"
Davide
13 Jul 2020
1# adapted from answer of Stack Overflow user in the source link
2
3order = ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"]
4sns.barplot(x = df['weekday'], y = df['col'], order = order)