Nothing
`print.permutest.cca` <-
function (x, ...)
{
EPS <- sqrt(.Machine$double.eps)
cat("\nPermutation test for", x$method, "\n\n")
cat(howHead(x$control), "\n")
writeLines(strwrap(pasteCall(x$testcall)))
Pval <- (sum(x$F.perm >= x$F.0 - EPS) + 1)/(x$nperm + 1)
cat("Permutation test for ")
if (x$first)
cat("first constrained eigenvalue\n")
else
cat("all constrained eigenvalues\n")
cat("Pseudo-F:\t", x$F.0, "(with", paste(x$df, collapse = ", "),
"Degrees of Freedom)\n")
cat("Significance:\t", format.pval(Pval),
"\n\n")
invisible(x)
}
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.