Skip to contents

Return the confidence interval of the Delta_Med in the output of delta_med().

Usage

# S3 method for delta_med
confint(object, parm, level = NULL, ...)

Arguments

object

The output of delta_med().

parm

Not used because only one parameter, the Delta_Med, is allowed.

level

The level of confidence, default is NULL and the level used when the object was created will be used.

...

Optional arguments. Ignored.

Value

A one-row matrix of the confidence interval. All values are NA if bootstrap confidence interval was not requested when calling delta_med().

Details

It returns the nonparametric bootstrap percentile confidence interval of Delta_Med, proposed byLiu, Yuan, and Li (2023). The object must be the output of delta_med(), with bootstrap confidence interval requested when calling delta_med(). However, the level of confidence can be different from that used when call delta_med().

See also

Examples


library(lavaan)
dat <- data_med
mod <-
"
m ~ x
y ~ m + x
"
fit <- sem(mod, dat)

# Call do_boot() to generate
# bootstrap estimates
# Use 2000 or even 5000 for R in real studies
# Set parallel to TRUE in real studies for faster bootstrapping
boot_out <- do_boot(fit,
                    R = 45,
                    seed = 879,
                    parallel = FALSE,
                    progress = FALSE)
# Remove 'progress = FALSE' in practice
dm_boot <- delta_med(x = "x",
                     y = "y",
                     m = "m",
                     fit = fit,
                     boot_out = boot_out,
                     progress = FALSE)
dm_boot
#> Call:
#> delta_med(x = "x", y = "y", m = "m", fit = fit, boot_out = boot_out, 
#>     progress = FALSE)
#> 
#> Predictor (x)       : x 
#> Mediator(s) (m)     : m 
#> Outcome variable (y): y 
#> 
#> Delta_med                          :          0.230
#> 95.0% Bootstrap confidence interval: [0.097, 0.318]
#> Number of bootstrap samples        :             45
#> 
#> Paths removed:
#>  m~x
confint(dm_boot)
#>                2.5 %    97.5 %
#> Delta_Med 0.09725932 0.3175632