Hi Malcolm,
You need to tell geom_boxplot not to use stat_boxplot:
geom_boxplot(aes(lower=y_q1, upper=y_q3, middle=y_med, ymin=y_min,
ymax=y_max), stat = "identity")
Hadley
On Mon, Jul 6, 2009 at 6:55 AM, Malcolm Ryan wrote:
> Is there anyway in ggplot2 to set the aesthetics for a geom_boxplot
>
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
2 matches
Mail list logo