Nothing
`print.decorana` <-
function (x, digits = max(3, getOption("digits") - 3), ...)
{
cat("\nCall:\n")
cat(deparse(x$call), "\n\n")
cat(ifelse(x$ira, "Orthogonal", "Detrended"), "correspondence analysis")
cat(ifelse(!x$ira, paste(" with ", x$mk, " segments.\n",
sep = ""), ".\n"))
if (x$iresc) {
cat("Rescaling of axes with", x$iresc, "iterations")
if (x$short)
cat(", and shortest axis rescaled", x$short)
cat(".\n")
}
if (!is.null(x$v))
cat("Downweighting of rare species from fraction 1/", x$fraction, ".\n", sep="")
if (!is.null(x$before)) {
cat("Piecewise transformation of above-zero abundances:")
print(as.data.frame(rbind(before = x$before, after = x$after),
optional=TRUE))
}
cat("Total inertia (scaled Chi-square):", round(x$totchi, digits), "\n")
axlen <- apply(x$rproj, 2, function(z) diff(range(z)))
cat("\n")
print(rbind("Eigenvalues" = x$evals,
"Additive Eigenvalues" = x$evals.ortho,
"Decorana values" = x$evals.decorana,
"Axis lengths" = axlen), digits = digits)
cat("\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.