Concept Flow - GroupBy with transform for normalization
Start with DataFrame
Group data by key
Calculate group-wise stats (mean, std)
Apply transform function to each group
Normalize values within each group
Return DataFrame with normalized values
We start with a DataFrame, group rows by a key, compute stats per group, then transform each group to normalize values, returning a DataFrame with normalized data.