R/print.K.R

Defines functions print.K

Documented in print.K

#' print.K function
#'
#' S3 function to print only the results without the raw.data
#' @param x a K object output
#' @return a dataframe of the results
#' @export

print.K <- function(x) {
  print(x$Results)
}
smeister/viralEXP documentation built on May 29, 2019, 9:37 a.m.