describe
.error.bars(x, ylab = "Dependent Variable",xlab="Independent Variable", main="95% confidence limits", ylim = NULL, ci = 1.96, labels = NULL, pos = NULL, arrow.len = 0.05, add = FALSE, ...)
error.crosses
, error.bars.by
x <- matrix(rnorm(500),ncol=20)
error.bars(x)
#now do a boxplot and then add error bars
x.df <- as.data.frame(x)
boxplot(x.df)
error.bars(x.df, add=TRUE)
error.bars(attitude) #another example
Run the code above in your browser using DataLab