Nothing
###########################################################################
# print.miss #
# #
# The purpose of the print.miss function is to print the contents of an #
# object of class miss to the screen. #
###########################################################################
print.miss <- function(x, ...)
{
if(missing(x)) stop("The x argument is required.")
cat("\nAlgorithm:", x$Algorithm)
cat("\nImp:")
cat("\n Missing Values:", nrow(x$Imp))
cat("\n Iterations:", ncol(x$Imp))
cat("\nparm: (NOT SHOWN HERE)")
cat("\nPostMode: (NOT SHOWN HERE)")
cat("\nType: (NOT SHOWN HERE)\n")
invisible(x)
}
#End
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.