Warning: `aes_string()` was deprecated in ggplot2 3.0.0.
ℹ Please use tidy evaluation idioms with `aes()`.
ℹ See also `vignette("ggplot2-in-packages")` for more information.
This warning is displayed once every 8 hours.
Call `lifecycle::last_lifecycle_warnings()` to see where this warning was generated.
Warning: Using an external vector in selections was deprecated in tidyselect 1.1.0.
ℹ Please use `all_of()` or `any_of()` instead.
# Was:
data %>% select(compartments)
# Now:
data %>% select(all_of(compartments))
See <https://tidyselect.r-lib.org/reference/faq-external-vector.html>.
This warning is displayed once every 8 hours.
Call `lifecycle::last_lifecycle_warnings()` to see where this warning was generated.
[ ] Use browser() as late as possible in the renderUI call in server.R and then
Call lifecycle::last_lifecycle_warnings() to see where this warning was generated and use the suggested fix after reading the suggested materials in the warning.
browser()
as late as possible in therenderUI
call in server.R and then