R/ols-confint.R
get_confint.RdGet the tidy variance summary and confidence intervals from a fitted OLS maars_lm, lm
class object
get_confint( mod_fit, parm = NULL, level = 0.95, sand = NULL, boot_emp = NULL, boot_sub = NULL, boot_mul = NULL, boot_res = NULL, well_specified = NULL )
| mod_fit | (maars_lm, lm) A fitted OLS |
|---|---|
| parm | ( |
| level | (double) : numeric value between 0 and 1 indicating the confidence level (e.g., 0.95) |
| sand | (logical) : |
| boot_emp | (logical) : |
| boot_sub | (logical) : |
| boot_mul | (logical) : |
| boot_res | (logical) : |
| well_specified | (logical) : |
(tibble) : Combined standard error and confidence intervals
summary from a fitted OLS maars_lm, lm class object
The function generates the same output as get_boot_summary,
but also includes lower and upper confidence intervals for the regression
coefficients according to the significance level specified in the "level"
argument.
if (FALSE) { # TODO: Add here }