Creates a forest plot for comparing model estimates with confidence intervals. Useful for sensitivity analysis comparisons.
Examples
if (FALSE) { # \dontrun{
est <- data.frame(
model = c("Full", "Sensitivity 1", "Sensitivity 2"),
estimate = c(-2.1, -1.9, -2.3),
ci_lower = c(-3.5, -3.4, -3.8),
ci_upper = c(-0.7, -0.4, -0.8)
)
plot_forest(est)
} # }