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 Oct. 26, 2023, 5:08 p.m.