# NOT RUN {
#############################################################################
# EXAMPLE 1: SD2011 | Minimal example for using a mice imputation method
#############################################################################
library(synthpop)
#** selection of dataset
data(SD2011, package="synthpop")
vars <- c("sex","age","ls","smoke")
dat <- SD2011[1:1000, vars]
dat$ls <- as.numeric(dat$ls)
#** default synthesis
imp0 <- synthpop::syn(dat)
pred <- imp0$predictor.matrix
method <- imp0$method
#** use mice imputation method 'rlm' for variable 'ls'
method["ls"] <- "mice"
mice_fun <- list( ls="rlm" )
mice_args <- list( ls=list( trafo=base::log, antitrafo=base::exp) )
#* synthesize data
imp <- synthpop::syn( dat, method=method, predictor.matrix=pred, k=2000, m=1,
rf.mice_fun=mice_fun, rf.mice_args=mice_args)
str(imp$syn)
# }
Run the code above in your browser using DataLab