R/exp.mcpCI.R

Defines functions exp.mcpCI

Documented in exp.mcpCI

#' exp transformation of Confidence Intervals
#' 
#' Exponential transformation of confidence interval estimates in mcpCI objects.
#' 
#' @param x An object of class mcpCI
#' 
#' @return An object of class mcpCI with transformed estimates.
#' 
#' @family confidence interval transformations
#' @seealso \code{\link{exp}}, \code{\link{confint.mcprofile}}
#' 
#' @keywords misc

exp.mcpCI <-
  function(x){
    x$estimate <- exp(x$estimate)
    x$confint <- exp(x$confint)
    return(x)
  }
daniel-gerhard/mcprofile documentation built on April 21, 2021, 11:14 p.m.