R/print.miss.R

Defines functions print.miss

Documented in print.miss

###########################################################################
# 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

Try the LaplacesDemon package in your browser

Any scripts or data that you put into this service are public.

LaplacesDemon documentation built on July 9, 2021, 5:07 p.m.