| Line 39... |
Line 39... |
| 39 |
Complete aliasing refers to effects in linear models that cannot be estimated
|
39 |
Complete aliasing refers to effects in linear models that cannot be estimated
|
| 40 |
independently of the terms which occur earlier in the model and so
|
40 |
independently of the terms which occur earlier in the model and so
|
| 41 |
have their coefficients omitted from the fit. Partial aliasing refers
|
41 |
have their coefficients omitted from the fit. Partial aliasing refers
|
| 42 |
to effects that can be estimated less precisely because of
|
42 |
to effects that can be estimated less precisely because of
|
| 43 |
correlations induced by the design.
|
43 |
correlations induced by the design.
|
| 44 |
|
44 |
|
| 45 |
Some parts of the \code{"lm"} method require recommended package
|
45 |
Some parts of the \code{"lm"} method require recommended package
|
| 46 |
\CRANpkg{MASS} to be installed.
|
46 |
\CRANpkg{MASS} to be installed.
|
| 47 |
}
|
47 |
}
|
| 48 |
\value{
|
48 |
\value{
|
| 49 |
A list (of \code{\link{class}} \code{"\link{listof}"}) containing components
|
49 |
A list (of \code{\link{class}} \code{"\link{listof}"}) containing components
|
| 50 |
\item{Model}{Description of the model; usually the formula.}
|
50 |
\item{Model}{Description of the model; usually the formula.}
|
| 51 |
\item{Complete}{A matrix with columns corresponding to effects that
|
51 |
\item{Complete}{A matrix with columns corresponding to effects that
|
| Line 68... |
Line 68... |
| 68 |
}
|
68 |
}
|
| 69 |
\author{
|
69 |
\author{
|
| 70 |
The design was inspired by the S function of the same name described
|
70 |
The design was inspired by the S function of the same name described
|
| 71 |
in Chambers \emph{et al} (1992).
|
71 |
in Chambers \emph{et al} (1992).
|
| 72 |
}
|
72 |
}
|
| 73 |
\examples{\donttest{
|
73 |
\examples{\donttest{% as it loads MASS
|
| 74 |
op <- options(contrasts = c("contr.helmert", "contr.poly"))
|
74 |
op <- options(contrasts = c("contr.helmert", "contr.poly"))
|
| 75 |
npk.aov <- aov(yield ~ block + N*P*K, npk)
|
75 |
npk.aov <- aov(yield ~ block + N*P*K, npk)
|
| 76 |
alias(npk.aov)
|
76 |
alias(npk.aov)
|
| 77 |
options(op) # reset
|
77 |
options(op) # reset
|
| 78 |
}}
|
78 |
}}
|