【发布时间】:2019-06-28 22:41:15
【问题描述】:
我知道如何在 R( How to make new columns by counting up an existing column),但我也想知道它在 python 中是如何工作的。
当原始表格如下图时
userID cat1 cat2
a f 3
a f 3
a u 1
a m 1
b u 2
b m 1
b m 2
我按用户 ID 对它们进行分组并希望它像
userID cat1_f cat1_m cat1_u cat2_1 cat2_2 cat2_3
a 2 1 1 2 0 1
b 0 2 1 1 2 0
【问题讨论】:
标签: python pandas group-by count