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
I would expect vars_select(c("a", "b"), NA_integer_) to return an error similar to using NA.
library(tidyselect)
vars_select(c("a", "b"), NA)
#> Error: `NA` must evaluate to column positions or names, not a logical vector
vars_select(c("a", "b"), NA_character_)
#> Error: Unknown column `NA`
vars_select(c("a", "b"), NA_integer_)
#> a b #> "a" "b"
I would expect
vars_select(c("a", "b"), NA_integer_)
to return an error similar to usingNA
.Created on 2018-08-20 by the reprex package (v0.2.0).
The text was updated successfully, but these errors were encountered: