Is there anyway in ggplot2 to set the aesthetics for a geom_boxplot
directly, rather than having them computed by an implicit stat_boxplot?
If I try:
ggplot(data = t, aes(x = factor(x))) + geom_boxplot(coef=NULL,
aes(lower=y_q1, upper=y_q3, middle=y_med, ymin=y_min, ymax=y_max))
I get the error:
Error: stat_boxplot requires the following missing aesthetics: y
Malcolm
______________________________________________
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.