[R] Lattice barchart with error bars

Shaun Jackman sjackman at gmail.com
Thu Jul 4 23:53:24 CEST 2013


Hi,

I'd like to draw a lattice barchart of means with error bars to show
the standard deviation. I have the barchart, how do I add the error
bars?

require(datasets)
require(lattice)
x <- aggregate(weight ~ Diet, ChickWeight, function(x) c(mean=mean(x),
sd=sd(x)))
barchart(weight[,'mean'] ~ Diet, x)

Thanks,
Shaun



More information about the R-help mailing list