-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplotFactorial.Rd
35 lines (28 loc) · 1.34 KB
/
plotFactorial.Rd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
% File man/plotFactorial.Rd
% Part of the DEVISE package, https://github.com/cwendorf/DEVISE
\name{plotFactorial}
\alias{plotFactorial}
\alias{plotMeansFactorial}
\title{Plot Factorial}
\description{Provides a plot of all group or level means and their confidence intervals in a factorial or mixed design.}
\usage{
\method{plotFactorial}{data.frame}(frame, by, ylab="Outcome", xlab="", conf.level=.95)
\method{plotFactorial}{formula}(formula, by, ylab="Outcome", xlab="", conf.level=.95)
\method{plotFactorial}{wsm}(moments, ylab="Outcome", xlab="", conf.level=.95)
\method{plotFactorial}{bsm}(moments, ylab="Outcome", xlab="", conf.level=.95)
}
\arguments{
\item{frame}{a set of (non-empty) numeric vectors of data values}
\item{formula}{a formula of the form \code{lhs ~ rhs} where \code{lhs} is a numeric variable giving the data values and \code{rhs} a factor giving the corresponding groups}
\item{moments}{a matrix/frame of descriptive/summary statistics}
\item{by}{a blocking factor}
\item{ylab}{a label for the y-axis}
\item{xlab}{a label for the x-axis}
\item{conf.level}{confidence level of the interval}
}
\value{
The returned plot contains the following components:
\item{M}{the means for the variables or groups}
\item{LL}{the lower limits of the confidence intervals of the means}
\item{UL}{the upper limits of the confidence intervals of the means}
}