Nothing
#' @exportS3Method print mnp
print.mnp <- function (x, digits = max(3, getOption("digits") - 3), ...)
{
cat("\nCall:\n", deparse(x$call), "\n\n", sep = "")
param <- apply(x$param, 2, mean)
if (length(param)) {
cat("Parameter estimates (posterior means):\n")
print.default(format(param, digits = digits), print.gap = 2,
quote = FALSE)
}
else cat("No parameter estimates\n")
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.