-
Notifications
You must be signed in to change notification settings - Fork 2.1k
fix problems during ribbon data sort #3235
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
Conversation
I vaguely recall that sometimes there are cases where a variable doesn't make it into Is this applicable here? |
it seems to be dealing with the same problem... For this specific instance I can't see how/why one would provide both a constant But if you feel strongly about it I'll adopt your approach |
I don't have a strong opinion of how it should be coded. However, I think there are 4 distinct cases that should work, and you can verify whether they all do:
The error message implies that |
The error says either so at least one of them must be given in |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You could consider adding a period at the end of the error message. Otherwise LGTM.
This old issue has been automatically locked. If you believe you have found a related problem, please file a new issue (with reprex) and link to this issue. https://reprex.tidyverse.org/ |
reverse dependency check picked up an issue with the new sorting of
geom_ribbon()
insetup_data()
. Whenymin
is set outsideaes()
it would fail as it wouldn't have access to the variable at setup time. This PR mitigates that.