美文网首页
python – Pandas使用groupby中的count来

python – Pandas使用groupby中的count来

作者: 张松_5a7d | 来源:发表于2019-06-12 16:20 被阅读0次

转自:https://stackoverflow.com/questions/29836477/pandas-create-new-column-with-count-from-groupby

一个看起来如下的df:

我正在尝试创建一个看起来像这样的df:

我努力了

            df["count"] = df.groupby("item")["color"].transform('count')

但它并不是我所寻找的.

任何指导表示赞赏

这不是一个新专栏,这是一个新的DataFrame:

要获得所需的结果,请使用reset_index:

要获得“新列”,您可以使用transform:

相关文章

网友评论

      本文标题:python – Pandas使用groupby中的count来

      本文链接:https://www.haomeiwen.com/subject/avilfctx.html