This might be a trivial question but I\'m still trying to figure out pandas/numpy.
So, suppose I have a table with the following structure:
group_id
To get the minimum of column A for each group use transform
transform
df.groupby('group_id')['A'].transform('min')