R/print.uniCoxFit.R

Defines functions print.uniCoxFit

Documented in print.uniCoxFit

print.uniCoxFit=function(x,...){
  cat("Call:\n")
  dput(x$call)
  mat <- rbind(lambda = format(round(x$lamlist, 3)), number.of.genes =x$nfeatures) 
  dimnames(mat) <- list(dimnames(mat)[[1]], paste(1:ncol(mat)))
  print(t(mat), quote = FALSE)
  invisible()
}

Try the uniCox package in your browser

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

uniCox documentation built on May 29, 2017, 2:19 p.m.