R/effectContinuousReduxmod1.R

Defines functions effectContinuousReduxmod1

Documented in effectContinuousReduxmod1

effectContinuousReduxmod1 <-
function(object, c, IQReffect, effectsOutRange, level)
 {
  betaCI <- betaCIContinuousExactTrans(object = object, level = level)
  effect <- betaCI * c
  effect <- data.frame(c = c, effect)
  names(effect)[-1] <- c("Estimate", paste(c("lower", "upper"), 100 * level, "%", sep = ""))
  if (IQReffect)
   {
   	info <- paste("Adjusted additive change in the mean of the response variable for a\n'c' units additive change in the explanatory variable equivalent to the\ninterquartile range") 
    } else {
    info <- paste("Adjusted additive change in the mean of the response variable for a\n'c' =", c, " units additive change in the explanatory variable")
  }
  if (!IQReffect & effectsOutRange)
   info <- paste("WARNING: computing effects out of the observed range of X.\n\n", info, sep = "")          
  info <- paste(info, ":\n\n", sep = "")
  res <- list(effect = effect, info = info)
  res
 }

Try the tlm package in your browser

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

tlm documentation built on May 2, 2019, 2:11 p.m.