dot-summary_mean_ci function

Wrapper to calculate summary mean with 95% confidence interval

Wrapper to calculate summary mean with 95% confidence interval

This internal function calculates summary mean and 95% confidence interval of the utility variable, which can also be grouped. The function is used in Figures 4.2-4.4.

.summary_mean_ci(df, group_by)

Arguments

  • df: A data frame containing a utility column.
  • group_by: A character vector of column names to group by.

Returns

A data frame with the mean, lower bound, and upper bound of the 95

Examples

df <- data.frame(group = c("A", "A", "B", "B"), utility = c(0.5, 0.7, 0.8, 0.9)) .summary_mean_ci(df, group_by = "group")
  • Maintainer: Kim Rand
  • License: GPL (>= 2)
  • Last published: 2024-05-21

Useful links