groupby计算唯一值

groupby计算唯一值

本文介绍了使用pandas groupby计算唯一值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞! 我有以下形式的数据:I have data of the following form: code> 和last value_counts :Another solution with unique, then create new df by DataFrame.from_records, reshape to Series by stack and last value_counts:a = df[df.param.notnull()].groupby('group')['param'].unique()print (pd.DataFrame.from_records(a.values.tolist()).stack().value_counts())a 2b 1dtype: int64 这篇关于使用pandas groupby计算唯一值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云!
08-11 15:41