R/ols-var.R
get_boot_summary.Rdget_boot_summary returns a tibble containing the model's statistics
based on the coefficients estimates (boot_out) obtained via
boot_type bootstrap (e.g., empirical).
get_boot_summary(mod_fit, boot_out, boot_type)
| mod_fit | An "lm" (OLS) object. |
|---|---|
| boot_out | A tibble of the model's coefficients estimated ( |
| boot_type | A character specifying the bootstrap type. It can be be "emp"
for output from |
A tibble containing the summary statistics for the model: terms,
coefficients estimates, t-statistics, and p-values. These statistics are
based on the output of the bootstrap passed in boot_out.