Nothing
###########################################################################
# print.iterquad #
# #
# The purpose of the print.iterquad function is to print the contents of #
# an object of class iterquad to the screen. #
###########################################################################
print.iterquad <- function(x, ...)
{
if(missing(x)) stop("The x argument is required.")
cat("\nAlgorithm: ", x$Algorithm, sep="")
cat("\nCall:\n")
print(x$Call)
cat("\nConverged: ", x$Converged, "\n", sep="")
cat("Covariance Matrix: (NOT SHOWN HERE; diagonal shown instead)\n")
print(diag(x$Covar))
cat("\nDeviance (Final): ", x$Deviance[length(x$Deviance)], "\n")
cat("History: (NOT SHOWN HERE)\n")
cat("Initial Values:\n")
print(x$Initial.Values)
cat("\nIterations: ", x$Iterations, "\n", sep="")
cat("Log(Marginal Likelihood): ", x$LML, "\n", sep="")
cat("Log-Posterior (Final): ", x$LP.Final, "\n", sep="")
cat("Log-Posterior (Initial): ", x$LP.Initial, "\n", sep="")
cat("Log-Posterior (Weights): (NOT SHOWN HERE)\n")
cat("M: (NOT SHOWN HERE)\n")
cat("Minutes of run-time: ", x$Minutes, "\n", sep="")
cat("Monitor: (NOT SHOWN HERE)\n")
cat("Nodes: ", x$N, "\n", sep="")
cat("Posterior: (NOT SHOWN HERE)\n")
cat("Summary1: (SHOWN BELOW)\n")
cat("Summary2: (SHOWN BELOW)\n")
cat("Tolerance (Final):\n")
print(x$Tolerance.Final)
cat("Tolerance (Stop):\n")
print(x$Tolerance.Stop)
cat("Z: (NOT SHOWN HERE)\n")
cat("\nSummary1:\n")
print(x$Summary1)
if({x$Converged == TRUE} && !any(is.na(x$Posterior))) {
cat("\nSummary2:\n")
print(x$Summary2)}
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.