Skip to contents

This function plots the point estimates and 95% credible intervals of ATE and APO from bayesmsm output.

Usage

plot_est_box(input, ...)

Arguments

input

A data frame or model object containing bootstrap results.

...

Additional arguments passed to the plotting function.

Value

A ggplot object presenting error bar plot of the mean effects and their 95% credible intervals for comparator level, reference level, and ATE.

Examples

testdata <- read.csv(system.file("extdata",
                     "continuous_outcome_data.csv",
                     package = "bayesmsm"))
model <- bayesmsm(ymodel = y ~ a_1+a_2,
                  nvisit = 2,
                  reference = c(rep(0,2)),
                  comparator = c(rep(1,2)),
                  treatment_effect_type = "sq",
                  family = "gaussian",
                  data = testdata,
                  wmean = rep(1, 1000),
                  nboot = 10,
                  optim_method = "BFGS",
                  parallel = FALSE)
plot_est_box(model)