Skip to contents

Calculate Hedges' g for continuous measures

Usage

hedges_g(
  int_adj_mean = 1,
  comp_adj_mean = 0.75,
  n_int = 100,
  n_comp = 150,
  int_unadj_sd = 0.1,
  comp_unadj_sd = 0.2
)

Arguments

int_adj_mean

The intervention group's adjusted mean.

comp_adj_mean

The comparison group's adjustment mean.

n_int

The number of observations in the intervention group.

n_comp

The number of observations in the comparison group.

int_unadj_sd

The unadjusted standard deviation of the intervention group.

comp_unadj_sd

The unadjusted standard deviation of the comparison group.

Value

The Hedges' g value.

Examples

g <- hedges_g(int_adj_mean = 1.0,
      comp_adj_mean = 0.75,
      n_int = 100,
      n_comp = 150,
      int_unadj_sd = 0.1,
      comp_unadj_sd = 0.2)