Auerbach-Lab/Behavior-autoanalysis

Supervisor_summarize generates warning "Warning: Using an external vector in selections was deprecated in tidyselect 1.1.0."

Closed this issue · 1 comments

tofof commented

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(columns)

Now:

data %>% select(all_of(columns))

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.

tofof commented

Need some cleanups presumably throughout entire codebase to get rid of these.