\name{error.bars.by} \alias{error.bars.by} \title{ Plot means and confidence intervals for multiple groups} \description{One of the many functions in R to plot means and confidence intervals. Meant mainly for demonstration purposes for showing the probabilty of replication from multiple samples. Can also be combined with such functions as boxplot to summarize distributions. Means and standard errors for each group are calculated using \code{\link{describeBy}}. } \usage{ error.bars.by(x,group,data=NULL, by.var=FALSE,x.cat=TRUE,ylab =NULL,xlab=NULL, main=NULL, ylim= NULL, xlim=NULL, eyes=TRUE, alpha=.05,sd=FALSE,labels=NULL,v.labels=NULL,v2.labels=NULL, add.labels=NULL,pos=NULL, arrow.len=.05, min.size=1,add=FALSE, bars=FALSE,within=FALSE, colors=c("black","blue","red"), lty,lines=TRUE, legend=0,pch=16,density=-10,stats=NULL,...) } %- maybe also 'usage' for other objects documented here. \arguments{ \item{x}{ A data frame or matrix } \item{group}{A grouping variable} \item{data}{If using formula input, the data file must be specified} \item{by.var}{A different line for each group (default) or each variable} \item{x.cat}{Is the grouping variable categorical (TRUE) or continuous (FALSE} \item{ylab}{y label} \item{xlab}{x label} \item{main}{title for figure} \item{ylim}{if specified, the y limits for the plot, otherwise based upon the data} \item{xlim}{if specified, the x limits for the plot, otherwise based upon the data} \item{eyes}{Should 'cats eyes' be drawn'} \item{alpha}{alpha level of confidence interval. Default is 1- alpha =95\% confidence interval} \item{sd}{sd=TRUE will plot Standard Deviations instead of standard errors} \item{labels}{ X axis label } \item{v.labels}{For a bar plot legend, these are the variable labels, for a line plot, the labels of the grouping variable.} \item{v2.labels}{the names for the 2nd grouping variable, if there is one} \item{add.labels}{if !NULL, then add the v2.labels to the left/right of the lines (add.labels="right")} \item{pos}{where to place text: below, left, above, right} \item{arrow.len}{ How long should the top of the error bars be?} \item{min.size}{Draw error bars for groups > min.size} \item{add}{ add=FALSE, new plot, add=TRUE, just points and error bars} \item{bars}{Draw a barplot with error bars rather than a simple plot of the means} \item{within}{Should the s.e. be corrected by the correlation with the other variables?} \item{colors}{groups will be plotted in different colors (mod n.groups). See the note for how to make them transparent.} \item{lty}{line type may be specified in the case of not plotting by variables} \item{lines}{By default, when plotting different groups, connect the groups with a line of type = lty. If lines is FALSE, then do not connect the groups} \item{legend}{Where should the legend be drawn: 0 (do not draw it), 1= lower right corner, 2 = bottom, 3 ... 8 continue clockwise, 9 is the center} \item{pch}{The first plot symbol to use. Subsequent groups are pch + group} \item{density}{How many lines/inch should fill the cats eyes. If missing, non-transparent colors are used. If negative, transparent colors are used. May be a vector for different values.} \item{stats}{if specified, the means, sd, n and perhaps of se of a data set to be plotted} \item{\dots}{other parameters to pass to the plot function e.g., lty="dashed" to draw dashed lines} } \details{Drawing the mean +/- a confidence interval is a frequently used function when reporting experimental results. By default, the confidence interval is 1.96 standard errors (adjusted for the t-distribution). Improved/modified in August, 2018 to allow formula input (see examples) as well as to more properly handle multiple groups. Following a request for better labeling of the grouping variables, the v.lab option is implemented for line graphs as well as bar graphs. Note that if using multiple grouping variables, the labels are for the variable with the most levels (which should be the first one.) This function was originally just a wrapper for \code{\link{error.bars}} but has been written to allow groups to be organized either as the x axis or as separate lines. If desired, a barplot with error bars can be shown. Many find this type of plot to be uninformative (e.g., https://biostat.mc.vanderbilt.edu/DynamitePlots ) and recommend the more standard dot plot. Note in particular, if choosing to draw barplots, the starting value is 0.0 and setting the ylim parameter can lead to some awkward results if 0 is not included in the ylim range. Did you really mean to draw a bar plot in this case? For up to three groups, the colors are by default "black", "blue" and "red". For more than 3 groups, they are by default rainbow colors with an alpha factor (transparency) of .5. To make colors semitransparent, set the density to a negative number. See the last example. } \value{Graphic output showing the means + x\% confidence intervals for each group. For ci=1.96, and normal data, this will be the 95\% confidence region. For ci=1, the 68\% confidence region. These confidence regions are based upon normal theory and do not take into account any skew in the variables. More accurate confidence intervals could be found by resampling. The results of describeBy are reported invisibly. } \seealso{ See Also as \code{\link{error.crosses}}, \code{\link{histBy}}, \code{\link{scatterHist}}, \code{\link{error.bars}} and \code{\link{error.dots}} } \examples{ data(sat.act) #The generic plot of variables by group error.bars.by( SATV + SATQ ~ gender,data=sat.act) #formula input error.bars.by( SATV + SATQ ~ gender,data=sat.act,v.lab=cs(male,female)) #labels error.bars.by(SATV + SATQ ~ education + gender, data =sat.act) #see below error.bars.by(sat.act[1:4],sat.act$gender,legend=7) #specification of variables error.bars.by(sat.act[1:4],sat.act$gender,legend=7,labels=cs(male,female)) #a bar plot error.bars.by(sat.act[5:6],sat.act$gender,bars=TRUE,labels=c("male","female"), main="SAT V and SAT Q by gender",ylim=c(0,800),colors=c("red","blue"), legend=5,v.labels=c("SATV","SATQ")) #draw a barplot #a bar plot of SAT by age -- not recommended, see the next plot error.bars.by(SATV + SATQ ~ education,data=sat.act,bars=TRUE,xlab="Education", main="95 percent confidence limits of Sat V and Sat Q", ylim=c(0,800), v.labels=c("SATV","SATQ"),colors=c("red","blue") ) #a better graph uses points not bars #use formulat input #plot SAT V and SAT Q by education error.bars.by(SATV + SATQ ~ education,data=sat.act,TRUE, xlab="Education", legend=5,labels=colnames(sat.act[5:6]),ylim=c(525,700), main="self reported SAT scores by education", v.lab =c("HS","in coll", "< 16", "BA/BS", "in Grad", "Grad/Prof")) #make the cats eyes semi-transparent by specifying a negative density error.bars.by(SATV + SATQ ~ education,data=sat.act, xlab="Education", legend=5,labels=c("SATV","SATQ"),ylim=c(525,700), main="self reported SAT scores by education",density=-10, v.lab =c("HS","in coll", "< 16", "BA/BS", "in Grad", "Grad/Prof")) #use labels to specify the 2nd grouping variable, v.lab to specify the first error.bars.by(SATV ~ education + gender,data=sat.act, xlab="Education", legend=5,labels=cs(male,female),ylim=c(525,700), main="self reported SAT scores by education",density=-10, v.lab =c("HS","in coll", "< 16", "BA/BS", "in Grad", "Grad/Prof"), colors=c("red","blue")) #now for a more complicated examples using 25 big 5 items scored into 5 scales #and showing age trends by decade #this shows how to convert many levels of a grouping variable (age) into more manageable levels. data(bfi) #The Big 5 data #first create the keys keys.list <- list(Agree=c(-1,2:5),Conscientious=c(6:8,-9,-10), Extraversion=c(-11,-12,13:15),Neuroticism=c(16:20),Openness = c(21,-22,23,24,-25)) keys <- make.keys(psychTools::bfi,keys.list) #then create the scores for those older than 10 and less than 80 bfis <- subset(psychTools::bfi,((psychTools::bfi$age > 10) & (psychTools::bfi$age < 80))) scores <- scoreItems(keys,bfis,min=1,max=6) #set the right limits for item reversals #now draw the results by age #specify the particular colors to use error.bars.by(scores$scores,round(bfis$age/10)*10,by.var=TRUE, main="BFI age trends",legend=3,labels=colnames(scores$scores), xlab="Age",ylab="Mean item score", colors=cs(green,yellow,black,red,blue), v.labels =cs(10-14,15-24,25-34,35-44,45-54,55-64,65-74)) #show transparency error.bars.by(scores$scores,round(bfis$age/10)*10,by.var=TRUE, main="BFI age trends",legend=3,labels=colnames(scores$scores), xlab="Age",ylab="Mean item score", density=-10, colors=cs(green,yellow,black,red,blue), v.labels =cs(10-14,15-24,25-34,35-44,45-54,55-64,65-74)) } % Add one or more standard keywords, see file 'KEYWORDS' in the % R documentation directory. \keyword{multivariate} \keyword{ hplot }% __ONLY ONE__ keyword per line