how to give order in boxplot matplotlib

Solutions on MaxInterview for how to give order in boxplot matplotlib by the best coders in the world

showing results for - "how to give order in boxplot matplotlib"
Noah
08 Jan 2017
1category_order_by_mean_salary = train.groupby('Category')['Salary'].mean().order().keys()
2
Lilly
30 Feb 2018
1df.boxplot(by="group", column="column_name")
2