search for: censorb

Displaying 1 result from an estimated 1 matches for "censorb".

Did you mean: censor
2012 Oct 19
2
Axis Breaks with ggplot2
...ow.names = c(NA, -3L), class = "data.frame") library(ggplot2) none <- theme_blank() err1$condition <- as.factor(err1$condition) censorA <- ggplot() + geom_bar(aes(y = trial.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) +...