当前位置:  开发笔记 > 编程语言 > 正文

groupby pandas之后过滤行

如何解决《groupbypandas之后过滤行》经验,为你挑选了1个好方法。



1> Ted Petrou..:

这是在执行groupby之后直接应用过滤器.在您提供的数据中,pidx的值仅为20,因此会被过滤掉.

df.groupby('pidx').filter(lambda x: len(x) > 2)

   LeafID  count  pidx  pidy
0       1     10    10    20
1       1     20    10    20
3       1     40    10    20
7       6     50    10    43

推荐阅读
oDavid_仔o_880
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有