Nothing
print.nullmodel <- function(x, ...) {
isSeq <- ifelse(x$commsim$isSeq, "sequential", "non-sequential")
if (x$commsim$binary)
kind <- "binary"
else
kind <- ifelse(x$commsim$mode == "integer", "count", "abundance")
cat("An object of class", dQuote(class(x)[1L]), "\n")
cat(sQuote(x$commsim$method), " method (",
kind, ", ", isSeq, ")\n", sep="")
cat(x$nrow, "x", x$ncol, "matrix\n")
if (x$commsim$isSeq)
cat("Iterations =", x$iter, "\n\n") else 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.