在Python中使用Group by缩放坐标轴

时间:2019-04-13 21:07:08

标签: python pandas

我的Y轴包括0到250万。我可以将这个数字除以1000

如何实现此代码?我的代码如下。

df.groupby('CASE_STATUS')['Index'].nunique().plot(kind='bar',fontsize=12)

如您在图片中所见,我想用特定数字划分Y轴

https://i.stack.imgur.com/o83Hs.png][1]

1 个答案:

答案 0 :(得分:0)

这还不足以解决问题:

(df.groupby('CASE_STATUS')['Index'].nunique()/1000).plot(kind='bar',fontsize=12)