Concept Flow - agg() for multiple aggregations
Start with DataFrame
Call agg() with dict or list
For each column: apply each agg function
Collect results into new DataFrame
Return aggregated DataFrame
The agg() function takes multiple aggregation functions for each column and applies them, returning a summarized DataFrame.