R/mice_imputation_transformation.R

Defines functions mice_imputation_transformation

## File Name: mice_imputation_transformation.R
## File Version: 0.03

mice_imputation_transformation <- function(x, trafo_fun)
{
    y <- x
    if (!is.null(trafo_fun)){
        args1 <- list(x=x)
        y <- do.call(what=trafo_fun, args=args1)
    }
    return(y)
}

Try the miceadds package in your browser

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

miceadds documentation built on Jan. 7, 2023, 1:09 a.m.