`add1.cca`<-
function(object, scope, test = c("none", "permutation"),
pstep = 100, perm.max = 200, ...)
{
if (inherits(object, "prc"))
stop("'step'/'add1' cannot be used for 'prc' objects")
test <- match.arg(test)
## Default add1
out <- NextMethod("add1", object, test = "none", ...)
cl <- class(out)
## Loop over terms in 'scope' and do anova.cca
if (test == "permutation") {
## Avoid nested Condition(Condition(x) + z)
hasfla <- update(terms(object$terminfo), . ~ Condition(.))
if (!is.character(scope))
scope <- add.scope(object, update.formula(object, scope))
ns <- length(scope)
adds <- matrix(0, ns+1, 3)
adds[1, ] <- NA
for (i in 1:ns) {
tt <- scope[i]
## Condition(.) previous terms (if present)
if (!is.null(object$CCA)) {
fla <- update(hasfla, paste("~ . +", tt))
nfit <- update(object, fla)
}
else
nfit <- update(object,
as.formula(paste(". ~ . +", tt)))
tmp <- anova(nfit, step = pstep, perm.max = perm.max, ...)
adds[i+1,] <- unlist(tmp[1,3:5])
}
colnames(adds) <- colnames(tmp)[3:5]
out <- cbind(out, adds)
class(out) <- cl
}
out
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.