2
select df.id, count(distinct airports) as num
from df
group by df.id
having count(distinct airports) > 3
我想在Python熊貓做上述的等價物。我試過filter
,nunique
,agg
的不同組合,並且沒有任何工作。有什麼建議?小組由,在熊貓有
例如: DF
df
id airport
1 lax
1 ohare
2 phl
3 lax
2 mdw
2 lax
2 sfw
2 tpe
所以我希望得到的結果是:
id num
2 5