R/summary.semforest.R

Defines functions summary.semforest

#' @exportS3Method 
summary.semforest <- function(object, ...)
{
  
  height.distr <- table(
    simplify2array(lapply(object$forest, getHeight)))
  cat(paste("Height distribution of the forest:"))
  print(height.distr)
  
}
brandmaier/semtree documentation built on April 18, 2024, 3:24 a.m.