SyntaxFix
Write A Post
Hire A Developer
Questions
The updated dplyr solution, as for 2020
1: summarise_each_() is deprecated as of dplyr 0.7.0. and 2: funs() is deprecated as of dplyr 0.8.0.
summarise_each_()
funs()
ag.dplyr <- DF %>% group_by(ID) %>% summarise(across(.cols = everything(),list(mean = mean, sd = sd)))