R/print.MultiCHull.R

Defines functions print.MultiCHull

Documented in print.MultiCHull

#' @export
#' @rdname MultiCHull
print.MultiCHull <-
  function(x, ...){
    cat("Frequency of selection by CHull\n")
    tabl <- x$frq
    print(tabl)
    cat("\nScree test values\n")
    if (ncol(x$st)<12){
      print(x$st)
    } else {
      index <- which(apply(x$st,1,na.rm=T,sum)>0)
      print(round(x$st[index,],2))
    }
  }

Try the multichull package in your browser

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

multichull documentation built on Sept. 12, 2024, 7:41 a.m.