R/print.oSCR.ma.coef.R

Defines functions print.oSCR.ma.coef

print.oSCR.ma.coef <- function(ma){
  class(ma) <- "data.frame"
  nums <- vapply(ma, is.numeric, FUN.VALUE = logical(1))
  ma[,nums] <- round(ma[,nums], digits = 2)
  print(ma)
  cat("", fill=TRUE)
  cat("* Denotes 'shrinkage' values.", fill=TRUE)
}
jaroyle/oSCR documentation built on Sept. 23, 2023, 12:46 p.m.