-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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
Comments
@hadley it probably makes sense to attempt to support |
Yeah, probably. |
Would be super neat if dplyr would support that so the new |
What do you mean by safe? |
Safe as in not loading the entire dplyr namespace using I suppose a potential workaround would be to use |
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 |
I accidentally used
dplyr::between()
instead ofbetween()
injoin_by()
. Not sure whether you want to accept it with a namespace or not but the error message isn't very helpful.Created on 2023-05-02 with reprex v2.0.2
The text was updated successfully, but these errors were encountered: