R/print.combinedGradientForest.r

Defines functions `print.combinedGradientForest`

`print.combinedGradientForest` <-
function(x,...)
{
  cat("\nCall:\n")
  cat(paste(deparse(x$call), sep = "\n", collapse = "\n"), "\n", sep = " ")
  cat("\ngradientForest objects:\n")
  cat(paste(names(x$nspec), sep = " "), "\n", sep = " ")
  cat("\nNumber of Species:\n")
  print(x$nspec)
  cat("\nPredictors:\n")
  cat(paste(names(x$gf.names), sep = " "), "\n", sep = ", ", fill=T)
  invisible(x)
}

Try the gradientForest package in your browser

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

gradientForest documentation built on Aug. 24, 2023, 3:03 p.m.