Nothing
## File Name: mice_1chain_check_input.R
## File Version: 0.03
mice_1chain_check_input <- function(burnin, iter, Nimp)
{
if (burnin <=0){
burnin <- 1
}
if (iter <=burnin + Nimp ){
iter <- burnin + Nimp
}
#--- output
res <- list( burnin=burnin, iter=iter, Nimp=Nimp)
return(res)
}
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.