Displaying 1 result from an estimated 1 matches for "censorc".
Did you mean:
censor
2012 Oct 19
2
Axis Breaks with ggplot2
...l.avg, x =
as.factor(condition2), fill = as.factor(condition2), position = "dodge"),
data = err1)
censorB <- censorA + geom_errorbar(aes(x = err1$condition2, ymin =
(err1$trial.avg-(err1$trial.sd/sqrt(40))), ymax = (err1$trial.avg+(err1$
trial.sd/sqrt(40))), data = err1, width = .4))
censorC <- censorB + opts(panel.background = none) + opts(panel.border =
none) + opts(panel.grid.minor = none) + opts(panel.grid.major = none) +
opts(axis.line = theme_segment(colour = "grey35")) + opts(background.fill =
none)
censorC + scale_y_continuous(limits = c(0,7), expand = c(0,0), &...