https://github.com/cran/robCompositions
Raw File
Tip revision: 0c00ba572d6b53d50c6deb186fd64191d28834cd authored by Matthias Templ on 15 December 2008, 00:00:00 UTC
version 1.0.1
Tip revision: 0c00ba5
summary.imp.R
summary.imp <- function(object, ...){
  geometricmean <- function (x) {
    if (any(na.omit(x == 0)))
        0
    else exp(mean(log(unclass(x)[is.finite(x) & x > 0])))
  }
gm <- apply(object$xOrig, 2, function(x) {
  geometricmean(x[complete.cases(x)])
})
gmI <- apply(object$xImp, 2, function(x) {
  geometricmean(x[complete.cases(x)]) ## gewichten!
})

  d <- data.frame(orig=gm,
                  imp=gmI)
  cat("\n geometric mean of the original data and the imputed data: \n")

  ## Einfluss der Imputation mittels bootstrap schaetzen
  ## laut script sim

  d
}
back to top