Nothing
## 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)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.