R/print.summary.dht_bootstrap.R

Defines functions print.summary.dht_bootstrap

#' @export
print.summary.dht_bootstrap <- function(x, ...){
object <- x
  cat("Bootstrap results\n\n")
  cat("Boostraps          :", object$nboot, "\n")
  cat("Successes          :", object$nbootsuccess, "\n")
  cat("Failures           :", object$nbootfailures, "\n")

  cat("\n")

  object$tab <- round(object$tab, 2)

  print(object$tab)
}

Try the Distance package in your browser

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

Distance documentation built on July 26, 2023, 5:47 p.m.