I´m asked to obtain the life_expectancy median per region:
Gap %>%
group_by(region) %>%
summarise(Median = median(life_expectancy))
But also, mean and standard deviation.
Is there another function simplier that writing all this code?
Thank you in advance!