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
We've started using allow_rename = FALSE more often when our interfaces use tidy selection purely for selection (i.e. when we don't allow named inputs for possible renaming), so this error has popped up more often.
I think it would be useful if we could mention the expression causing the issue, like how we do here:
library(tidyselect)
library(rlang)
eval_select(expr(all_of(x)), mtcars)
#> Error:#> ! Problem while evaluating `all_of(x)`.#> Caused by error in `as_indices_impl()`:#> ! object 'x' not found
This came up in tidyverse/dplyr#6745
We've started using
allow_rename = FALSE
more often when our interfaces use tidy selection purely for selection (i.e. when we don't allow named inputs for possible renaming), so this error has popped up more often.I think it would be useful if we could mention the expression causing the issue, like how we do here:
I'm imagining something like this for tidyverse/dplyr#6745:
The text was updated successfully, but these errors were encountered: