Nothing
`print.summary.allPerms` <- function(x, ...) {
dims <- dim(x)
control <- attr(x, "control")
observed <- attr(x, "observed")
attributes(x) <- NULL
dim(x) <- dims
cat("\n")
writeLines(strwrap("Complete enumeration of permutations\n",
prefix = "\t"))
print(control)
cat("\nAll permutations:\n")
writeLines(paste("Contains observed ordering?:", ifelse(observed, "Yes", "No"),
"\n"))
print(x)
return(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.