Nothing
## File Name: mice_multilevel_create_formula.R
## File Version: 0.05
mice_multilevel_create_formula <- function( variables, include_intercept )
{
intercept_code <- if ( include_intercept ){ 1 } else { 0 }
fml <- paste0( c( intercept_code, variables ), collapse='+' )
return(fml)
}
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.