R/print.nca_output.R

Defines functions print.nca_output

Documented in print.nca_output

#' Print function for output from nca()
#'
#' @param x output object (list) from nca()
#' @param ... variables past on to print function
#' @export
print.nca_output <- function(x, ...) {
  res <- rbind(data.frame(value = t(as.data.frame(x$pk))),
               data.frame(value = t(as.data.frame(x$descriptive))))
  res$value <- format(round(res$value, 4), scientific = FALSE)
  print(res)
}

Try the clinPK package in your browser

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

clinPK documentation built on May 9, 2022, 9:06 a.m.