简体   繁体   中英

Matplotlib bar chart X-axis Labels order

Is there a way I can rearrange the x-axis of my bar chart so that the ages are listed in order?

在此处输入图片说明

在 value_counts() 之后添加一个 sort_index()

www['Age'].value_counts().sort_index() ## rest of code here

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM