Combine estimate with confidence interval into one string.
x_ci(
x,
l,
u,
digits = 2,
brackets = TRUE,
ci_sep = ", ",
ci_prefix = NULL,
na_vals = NULL
)Central estimate.
Lower estimate.
Upper estimate.
Number of digits to use after decimal point.
Option to enclose confidence interval in brackets.
Separator for confidence interval.
Optional prefix to add text before confidence interval.
Value to use to replace missing values; if NULL, uses x.
Estimate combined with confidence interval as a string.
if (FALSE) { # \dontrun{
x_ci(1.2, 0.7, 1.5, ci_sep = ", ", ci_prefix = "95% CI ")
} # }