diffPlot: Difference Plot

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

Description

A function for creating a Difference Plot between two groups.

Usage

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
diffPlot(x, ...)

## Default Method
## Default S3 method:
diffPlot(x, y, plotFUN=mean, errFUN=c("ci", "se", "sd"), conf=.95, 
  grp.names=NULL, var.equal=FALSE, paired=FALSE, ylim=NULL, ...)
  
## Method for class 'formula' 
## S3 method for class 'formula'
diffPlot(formula, data = NULL, plotFUN=mean, errFUN=c("ci", "se", "sd"), conf=.95, 
  grp.names=NULL, var.equal=FALSE, paired=FALSE, ylim=NULL, ...)

Arguments

x

A single variable with exactly two levels indicating the grouping factor. If x is a grouping factor, a second argument 'y' must be passed with as numeric vector of data values to be plotted.

y

Numeric vector of data values to be plotted

formula

A formula of the form lhs ~ rhs where lhs is a numeric vector containing the data values and rhs is a variable with exactly two levels giving the corresponding groups.

data

An optional data frame containing the variables in the formula.

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.

conf

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

grp.names

A character vector of length 2 providing the names for the two different groups (conditions, time-points).

var.equal

A logical indicating whether it should be assumed that the variances of the two groups on the DV are equal. Defaults to FALSE.

paired

A logical indicating whether the data are paired.

ylim

The limits of the plot on the y-axis.

...

Other arguments passed to the plot() and axis() functions including graphing parameters (e.g. 'col').

Details

This function creates a difference plot with error bars using raw data as input for either two independent group or dependent measures designs. This is a preferred way of graphical displaying group means that are directly compared (rather than bargraphs) because it provides information about the estimated size of the difference and the accuracy of that estimate (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 egraph

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
  # Independent Groups, default method
y <- rnorm(100)
g <- rep(1:2, each=50)
diffPlot(g, y, ylab="DV", xlab="", main="Plot of Means with Floating Axis for Mean Difference", 
grp.names=c("Control", "Experimental"), sub="Arms Indicate 95 Percent CIs")
  # Independent Groups, formula method
diffPlot(y ~ g, ylab="DV", xlab="", 
main="Plot of Means with Floating Axis for Mean Difference", 
grp.names=c("Control", "Experimental"), sub="Arms Indicate 95 Percent CIs")
  # Dependent Groups
library(mvtnorm)
myData <- rmvnorm(100, mean=c(0,.4), sigma=matrix(c(1,.8,.8,1), nrow=2, byrow=TRUE))
diffPlot(myData[,1], myData[,2], paired=TRUE, ylab="DV", xlab="", 
	main="Plot of Dependent Means with Floating Axis for Mean Difference", 
grp.names=c("Time 1", "Time 2"), sub="Arms Indicate 95 Percent CIs")

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