我在 pyspark 中使用 Dataframe。我有一张表,如下表 1。我需要获取表 2。其中:
- num_category - 每个 id 有多少个不同的类别
- sum(count) - 它是表 1 中每个 id 的第三列的总和。
例子:
表格1
id |category | count
1 | 4 | 1
1 | 3 | 2
1 | 1 | 2
2 | 2 | 1
2 | 1 | 1
表 2
id |num_category| sum(count)
1 | 3 | 5
2 | 2 | 2
我尝试:
table1 = data.groupBy("id","category").agg(count("*"))
cat = table1.groupBy("id").agg(count("*"))
count = table1.groupBy("id").agg(func.sum("count"))
table2 = cat.join(count, cat.id == count.id)
错误:
1 table1 = data.groupBy("id","category").agg(count("*"))
---> 2 cat = table1.groupBy("id").agg(count("*"))
count = table1.groupBy("id").agg(func.sum("count"))
table2 = cat.join(count, cat.id == count.id)
TypeError: 'DataFrame' object is not callable