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)
  
}

Try the semtree package in your browser

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

semtree documentation built on Nov. 26, 2023, 5:07 p.m.