list_tables_boot: Build the list of tables showing the results of the...

Description Usage Arguments Details Value See Also Examples

View source: R/tables.R

Description

This function is called internally by other functions. It processes the outcomes of the fit of each of the 17 models on different bootstrap replicates.

Usage

1
list_tables_boot(models_list, models_list_boot, print = TRUE)

Arguments

models_list

The list of fitted models

models_list_boot

The list of fitted models after bootstrap

print

A boolean indicating whether or not to print information about potential issues

Details

The table(s) produced contain the following columns:

  1. beta the parameter estimate in the original fit

  2. mean the mean of the parameter estimates across the fits on the bootstrapped data

  3. bias the difference between the column mean and beta

  4. SE the standard _error_ of the parameter estimates computed as the standard _deviation_ of the parameter estimates across the fits on the bootstrapped data

  5. lwr the lower boundary of the 95% confidence interval approximated as pnorm(0.025)*SE

  6. upr the upper boundary of the 95% confidence interval approximated as pnorm(0.975)*SE

Value

A list storing the tables created by table_boot.

See Also

boot_all_models, table_boot, table_model_averaging

Examples

1
list_tables_boot(models_list = Models, models_list_boot = Models_boot)

courtiol/SileR documentation built on May 16, 2020, 8:10 p.m.