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

Unhelpful error message when using dplyr::between() in join_by() #6838

Closed
mgirlich opened this issue May 2, 2023 · 7 comments · Fixed by #6951
Closed

Unhelpful error message when using dplyr::between() in join_by() #6838

mgirlich opened this issue May 2, 2023 · 7 comments · Fixed by #6951

Comments

@mgirlich
Copy link

mgirlich commented May 2, 2023

I accidentally used dplyr::between() instead of between() in join_by(). Not sure whether you want to accept it with a namespace or not but the error message isn't very helpful.

dplyr::join_by(dplyr::between(y, a, b))
#> Error in `as_string()`:
#> ! Can't convert a call to a string.
#> Backtrace:
#>     ▆
#>  1. └─dplyr::join_by(dplyr::between(y, a, b))
#>  2.   └─dplyr:::parse_join_by_expr(exprs[[i]], i, error_call = error_call)
#>  3.     └─rlang::as_string(expr[[1]])
#>  4.       └─rlang:::abort_coercion(x, "a string")
#>  5.         └─rlang::abort(msg, call = call)

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

@DavisVaughan
Copy link
Member

@hadley it probably makes sense to attempt to support dplyr:: namespacing right?

@hadley
Copy link
Member

hadley commented May 2, 2023

Yeah, probably.

@balthasars
Copy link

I accidentally used dplyr::between() instead of between() in join_by(). Not sure whether you want to accept it with a namespace or not but the error message isn't very helpful.

dplyr::join_by(dplyr::between(y, a, b))
#> Error in `as_string()`:
#> ! Can't convert a call to a string.
#> Backtrace:
#>     ▆
#>  1. └─dplyr::join_by(dplyr::between(y, a, b))
#>  2.   └─dplyr:::parse_join_by_expr(exprs[[i]], i, error_call = error_call)
#>  3.     └─rlang::as_string(expr[[1]])
#>  4.       └─rlang:::abort_coercion(x, "a string")
#>  5.         └─rlang::abort(msg, call = call)

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

Would be super neat if dplyr would support that so the new join_by() feature can also be used in situations where calling dplyr::between() is the only safe option. Thanks for the great work on dplyr!

@DavisVaughan
Copy link
Member

What do you mean by safe?

@balthasars
Copy link

What do you mean by safe?

Safe as in not loading the entire dplyr namespace using library() in legacy code projects that have the potential of namespace conflicts.

I suppose a potential workaround would be to use library(dplyr, include.only = c("between")), which sort of invalidates my argument.

@DavisVaughan
Copy link
Member

DavisVaughan commented Sep 18, 2023

join_by() interprets its input in a very special way, so if you don't load dplyr you can still call between() without namespacing it, i.e.

dplyr::join_by(between(x, y, z))
#> Join By:
#> - between(x, y, z)

Created on 2023-09-18 with reprex v2.0.2

@balthasars
Copy link

balthasars commented Sep 19, 2023

join_by() interprets its input in a very special way, so if you don't load dplyr you can still call between() without namespacing it, i.e.

dplyr::join_by(between(x, y, z))
#> Join By:
#> - between(x, y, z)

Created on 2023-09-18 with reprex v2.0.2

😮 I didn't even consider that, very cool! Thank you for providing this illuminating example! And thanks for the new join_by() feature, I've become an avid user 👍🏼

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.

4 participants