I'm a total beginner with doing data-analysis in google sheets. I have a sheet: (https://docs.google.com/spreadsheets/d/1WXTb14NU1IB5Dqgevrd4DaF1MoRkK1YQi58N9KRuTEA/edit?usp=sharing), that has a date column and some numeric columns.
I want to group by the date column and compute the average on the others. The sheet looks like this:
In R it could look like this:
df %>%
group_by(date) %>%
summarise(across(where(is.numeric),
~mean(.x)))