R/print.summary.semtree.R

Defines functions print.summary.semtree

#' @exportS3Method print summary.semtree
print.summary.semtree <-
function(x, ...) {
  cat("SEMtree Summary\n");	
  cat("Template model: ",x$model.title,"\n")
  cat("Total Sample Size: ", x$sample.size,"\n")
  cat("Number of nodes: ", x$num.nodes,"\n")
  cat("Number of leaf nodes: ", x$leaf.nodes,"\n")
  cat("Free Parameters: ", x$df," (",x$parameter.names,")\n")
}
brandmaier/semtree documentation built on April 12, 2024, 11:08 p.m.