Warning messages:
1: `funs()` is deprecated as of 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_warnings()` to see where this warning was generated.
2: Expected 7 pieces. Additional pieces discarded in 2 rows [137, 138].
This shouldn't cause any errors in the results. I know how to convert this to more modern dplyr conventions. I will update in a pull request. But for now this shouldn't cause any issues.
This block of code
Generates the warning: