We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In the geom_errorbar code, the required aesthetics are required_aes = c("x", "ymin", "ymax"),
required_aes = c("x", "ymin", "ymax"),
However, in the geom_errorbarh code, the required aesthetics are required_aes = c("x", "xmin", "xmax", "y"),
required_aes = c("x", "xmin", "xmax", "y"),
In other words, the x aesthetic is required for both plots, but the y aesthetic is required only for errorbarh.
x
y
errorbarh
I believe the correct answer would be to drop the x requirement from errorbarh
The text was updated successfully, but these errors were encountered:
geom_errorbarh
Successfully merging a pull request may close this issue.
In the geom_errorbar code,
the required aesthetics are
required_aes = c("x", "ymin", "ymax"),
However, in the geom_errorbarh code,
the required aesthetics are
required_aes = c("x", "xmin", "xmax", "y"),
In other words, the
x
aesthetic is required for both plots, but they
aesthetic is required only forerrorbarh
.I believe the correct answer would be to drop the
x
requirement fromerrorbarh
The text was updated successfully, but these errors were encountered: