-
Notifications
You must be signed in to change notification settings - Fork 2k
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
geom_boxplot with stat="identity" cannot recognize width parameter #2893
Comments
Curiously, I found the same issue yesterday just a few hours later... https://stackoverflow.com/questions/52376663/width-parameter-and-stat-identity-in-geom-boxplot?noredirect=1&lq=1 |
Yes, library(ggplot2)
set.seed(240193)
df1 <- data.frame(
person = rep(c("a", "b"), each = 10),
score = c(rnorm(10, 8, 1), rnorm(10, 6, 1.5))
)
ggplot(df1) +
geom_boxplot(aes(x = person, y = score), width = 0.1) df2 <- cbind(
person = c("a", "b"),
as.data.frame(matrix(c(
boxplot.stats(df1[1:10, 2])$stats,
boxplot.stats(df1[11:20, 2])$stats
), nrow = 2, byrow = T))
)
ggplot(df2) +
geom_boxplot(aes(
x = person,
ymin = V1,
lower = V2,
middle = V3,
upper = V4,
ymax = V5
),
stat = "identity", width = 0.1
) Created on 2018-09-18 by the reprex package (v0.2.0). |
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/ |
These 2 plots should be the same:
Instead I got this message = "Warning: Ignoring unknown parameters: width"
The text was updated successfully, but these errors were encountered: