I am getting this error, I cannot resolve it by myself.
funs() was deprecated in dplyr 0.8.0. Please use a list of either functions or lambdas:
# Simple named list: list(mean = mean, median = median)
# Auto named with tibble::lst(): tibble::lst(mean, median)
# Using lambdas list(~ mean(., trim = .2), ~ median(., na.rm = TRUE)) This warning is displayed once every 8 hours. Call lifecycle::last_lifecycle_warnings() to see where this warning was generated
my code is:
Qode_Detail %>% group_by(AlternateFacilityName, DataDate) %>%
data %>% group_by(AlternateFacilityName, DataDate) %>%
summarise_all(sum)
However, take into account that you have 2 non-numeric variables, GenderName and AgeBracketName and that, as you have not used those variables in the group_by, the sum function will crash, because it does not accept non-numeric arguments.