0

In SQL, we apply a filter over aggregated function like below

select col1,avg(col2) as avg_col2 from table group by col1 having avg_col2>100;

how can I apply the same logic in pandas over data frame?

Rajan Sharma
  • 2,211
  • 3
  • 21
  • 33

0 Answers0