Description Usage Arguments Details Value See Also Examples
This function is called internally by other functions. It processes the outcomes of the fit of the same model on different bootstrap replicates.
| 1 | table_boot(model, models_list_boot, print = TRUE)
 | 
| model | A fitted model | 
| models_list_boot | The list of fitted models after bootstrap | 
| print | A boolean indicating whether or not to print information about potential issues | 
The table(s) produced contain the following columns:
beta the parameter estimate in the original fit
mean the mean of the parameter estimates across the fits on the bootstrapped data
bias the difference between the column mean and beta
SE the standard _error_ of the parameter estimates computed as the standard _deviation_ of the parameter estimates across the fits on the bootstrapped data
lwr the lower boundary of the 95% confidence interval approximated as pnorm(0.025)*SE
upr the upper boundary of the 95% confidence interval approximated as pnorm(0.975)*SE
A data frame storing the results.
boot_all_models, list_tables_boot, table_model_averaging
| 1 2 3 4 | index <- unlist(lapply(strsplit(names(Models_boot), "_"),
                function(i) i[1] == "mod1")) ## find which bootstrap belong to mod1
mod1_boot <- Models_boot[index]
table_boot(model = Models$mod1, models_list_boot = mod1_boot)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.