我的Y轴包括0到250万。我可以将这个数字除以1000
如何实现此代码?我的代码如下。
df.groupby('CASE_STATUS')['Index'].nunique().plot(kind='bar',fontsize=12)
如您在图片中所见,我想用特定数字划分Y轴
答案 0 :(得分:0)
这还不足以解决问题:
(df.groupby('CASE_STATUS')['Index'].nunique()/1000).plot(kind='bar',fontsize=12)