-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtestEffect.Rd
33 lines (26 loc) · 1.06 KB
/
testEffect.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
% File man/testEffect.Rd
% Part of the DEVISE package, https://github.com/cwendorf/DEVISE
\name{testEffect}
\alias{testEffect}
\alias{testMeansEffect}
\title{Test Effect}
\description{Provides a statistical significance test for an Analysis of Variance.}
\usage{
\method{testEffect}{data.frame}(frame, ...)
\method{testEffect}{formula}(formula, ...)
\method{testEffect}{wsm}(moments, corrs, ...)
\method{testEffect}{bsm}(moments, ...)
}
\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{corrs}{a matrix/frame of correlations for the data set}
}
\value{
The returned frame contains the following components:
\item{F}{the F value for the Effect effect}
\item{dfb}{the degrees of freedom for the Effect effect}
\item{dfw}{the degrees of freedom for the error term}
\item{p}{the p value for the Effect effect}
}