标签: python pandas data-visualization
有没有办法只绘制熊猫条形图中前5名或前10名。
new_df['Class'].value_counts().plot.barh()
输出为:
但是输出看起来很混乱。我只想查看前5名和后5名的结果。
谢谢!