egraph: Plotting Summary Statistics with Error Bars

Description Usage Arguments Details Author(s) References See Also Examples

Description

A function for plotting a summary statistics with error bars.

Usage

1
2
3
egraph(DV, grp = NULL, plotFUN = mean, errFUN = c("ci", "se", "sd"), 
	sides = 2, conf = 0.95, xpoints = NULL, 
	grp.names = NULL, tick = FALSE, ylim = NULL, len = 0, ...)

Arguments

DV

A numeric variable containing raw scores to be summarized in the graph.

grp

Either (a) a single variable indicating the grouping factor, (b) a list of variables each indicating a different grouping factors, or (c) NULL (default) in which case only a single bar is graphed.

plotFUN

The function used to create the summary statistic. Usually mean is desired.

errFUN

A character element indicating the type of error bars to be calculated. There are four possible choices: "ci" (the default) uses a confidence interval for the mean with level indicated by the conf= argument. "se" uses 1 Standard Error from the mean. "sd" uses 1 Standard Deviation from the mean. NULL indicates no error bars are desired.

sides

A numeric indicating whether one-sided or two-sided error bars are desired.

conf

A numeric between .00 and 1.00 indicating the desired level of confidence if type "ci" is used for the errFUN argument.

xpoints

A vector indicating the location on the x-axis for each group. Can be used to create space between certain groups.

grp.names

A character vector providing the names for the different groups (conditions).

tick

A logical indicating whether tick marks should be drawn on the x-axis for each group.

ylim

A numeric vector of length 2 indicating the lower and upper limits of the y-axis.

len

A numeric indicating the desired length of the error bar "caps" in inches.

...

Other arguments passed to the plot() function including graphing parameters.

Details

This function plots a summary statistic with error bars using raw data as input. This is different from, and often more convenient, than barplot() which requires the use to compute the values to be plotted and error bars outside of the function. This is a preferred form of presenting group means (rather than bargraphs) because bargraphs tend to suggest more accuracy than in reality (Cumming, 2012).

Author(s)

Ryne A. Sherman

References

Cumming, G. (2012). Understanding the New Statistics: Effect Sizes, Confidence Intervals, and Meta-Analysis. New York: Routledge.

See Also

bargraph barplot

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
	#Making some random data
y <- rnorm(100)
x <- rep(c(1,2),50)
z <- c(1,rep(c(1,2,3),33))
zz <- rep(c(1:4),25)
x2 <- rep(1:2, each=50)
	#plotting
egraph(y)
egraph(y, xlab="", ylab="DV", las=1)
egraph(y, x, xlab="Conditions", ylab="DV", las=1)
egraph(y, z, xlab="Conditions", ylab="DV", las=1)
egraph(y, zz, xlab="", ylab="DV", las=1, font.main=1, 
	main="my title", sub="Arms Indicate 95 percent CIs")
egraph(y, zz, xlab="Conditions", ylab="DV", las=1, font.main=1, 
	main="my title", xpoints=c(1,1.5, 4,4.5),grp.names=c("A","B", "C", "D"), 
	sub="Arms Indicate 95 percent CIs", sides=1)

multicon documentation built on May 2, 2019, 3:18 a.m.