Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

dplyr::if_else() fails when condition is a labelled logical vector #6678

Closed
salim-b opened this issue Feb 2, 2023 · 0 comments · Fixed by #6715
Closed

dplyr::if_else() fails when condition is a labelled logical vector #6678

salim-b opened this issue Feb 2, 2023 · 0 comments · Fixed by #6715
Milestone

Comments

@salim-b
Copy link
Contributor

salim-b commented Feb 2, 2023

Starting with dplyr 1.1.0, dplyr::if_else() fails with a meaningless error message when condition is a labelled logical vector:

d <-
    mtcars |>
    dplyr::mutate(mileage = mpg > 20) |>
    labelled::set_variable_labels(mileage = "mileage dummy")

dplyr::if_else(d$mileage,
               "guzzler",
               "moderate")
#> Error in `dplyr::if_else()`:
#> ! `condition` must be a vector with type <logical>.
#> Instead, it has type <logical>.

#> Backtrace:
#>     ▆
#>  1. └─dplyr::if_else(d$mileage, "guzzler", "moderate")
#>  2.   └─vctrs::vec_assert(x = condition, ptype = logical(), arg = "condition")
#>  3.     └─rlang::abort(...)

Created on 2023-02-02 with reprex v2.0.2

Explicitly providing the correct prototype gives the same result:

dplyr::if_else(d$mileage,
               "guzzler",
               "moderate",
               ptype = vctrs::vec_ptype(d$mileage))
#> Error in `dplyr::if_else()`:
#> ! `condition` must be a vector with type <logical>.
#> Instead, it has type <logical>.

#> Backtrace:
#>     ▆
#>  1. └─dplyr::if_else(d$mileage, "guzzler", "moderate", ptype = vctrs::vec_ptype(d$mileage))
#>  2.   └─vctrs::vec_assert(x = condition, ptype = logical(), arg = "condition")
#>  3.     └─rlang::abort(...)
@salim-b salim-b changed the title [dplyr::if_else()](https://dplyr.tidyverse.org/reference/if_else.html) fails when condition is a **labelled** logical vector dplyr::if_else() fails when condition is a **labelled** logical vector Feb 2, 2023
@salim-b salim-b changed the title dplyr::if_else() fails when condition is a **labelled** logical vector dplyr::if_else() fails when condition is a labelled logical vector Feb 2, 2023
@DavisVaughan DavisVaughan added this to the 1.1.1 milestone Feb 7, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants