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) %>%
- summarise_all(funs(sum)) -> Qode_Detail
I have attached the screenshot for my table.