Nothing
## File Name: mice_imputation_smcfcs_draw_bootstrap_sample.R
## File Version: 0.03
mice_imputation_smcfcs_draw_bootstrap_sample <- function(data, ry)
{
ind_boot <- which(ry)
ind_boot <- sort( sample(ind_boot, length(ind_boot), replace=TRUE) )
dat1 <- data[ ind_boot, ]
rownames(dat1) <- NULL
return(dat1)
}
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.