You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some of the code in tidyr seems to not have been updated to reflect tidyselect 1.1.0 requirement to use all_of / any_of. This results in unnecessary warnings, but for some reason only when column names are passed as variables.
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(varname)
# Now:
data %>% select(all_of(varname))
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.
Note: reprex requires a fresh session as the warning is not repeated on subsequent runs
The text was updated successfully, but these errors were encountered:
Some of the code in
tidyr
seems to not have been updated to reflecttidyselect
1.1.0 requirement to useall_of
/any_of
. This results in unnecessary warnings, but for some reason only when column names are passed as variables.The warning produced is
Note: reprex requires a fresh session as the warning is not repeated on subsequent runs
The text was updated successfully, but these errors were encountered: