R/print.semforest.control.R

Defines functions print.semforest.control

Documented in print.semforest.control

#' @exportS3Method print semforest.control
print.semforest.control <- function(x, ...)
{
	stopifnot(is(x,"semforest.control"))

	cat("SEM-Forest control:\n-----------------\n")

	cat("Number of Trees: ", x$num.trees,"\n")
	cat("Sampling: ", x$sampling,"\n");
	cat("Comparisons per Node:", x$mtry,"\n\n")
	print.semtree.control(x$semtree.control)
}

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.