Nothing
`model.frame.cca` <-
function (formula, ...)
{
if (inherits(formula, "prc"))
stop("model.frame does not work with 'prc' results")
call <- formula$call
m <- match(c("formula", "data", "na.action", "subset"), names(call),
0)
call <- call[c(1, m)]
call[[1]] <- as.name("ordiParseFormula")
out <- eval(call, environment(), parent.frame())
mf <- out$modelframe
attr(mf, "terms") <- out$terms.expand
if (!is.null(out$na.action))
attr(mf, "na.action") <- out$na.action
mf
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.