In base R, what's your go-to for d |> group_by() |> summarise() with multiple summary statistics, returning a data.frame?
In base R, what's your go-to for d |> group_by() |> summarise() with multiple summary statistics, returning a data.frame?
aggregate() ot like Michael says split -> apply -> do.call with rbind (but in a more readable way :P)