我有一个数据集 X 为:
customer_id event_type tot_count
931 1 5
231 2 6
231 1 3
333 3 9
444 1 1
931 3 3
333 1 21
444 2 43
我需要一个总和customer_id
。event_type
这是 SQL 中的 1 行代码:
select customer_id, event_type, sum(tot_count) from X group by 1,2
我需要在 R 中进行相同的操作。