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