viewof effect_sizes = cell(`
//Effect size for the Incredible Years program reviewed by Menting et al.
effect_menting = 0.23
se_menting = (0.31-0.15)/(2*1.96)
//Effect sizes from Figure 21.3 in Mesurado et al., the study by Hare was excluded because the average age was < 10
effects_mesurado = [0.058, 0.039, 0.115, 0.375, -0.03, 0.679, 0.398, 0.317, 0.549]
se_mesurado = [0.278, 0.287, 0.117, 0.224, 0.100, 0.152, 0.084, 0.072, 0.313]
effects_laguna_and_shin_lee = [-0.0782, -0.3082, 0.2665, 0.2367, 0.1455, -0.0175, 0.6079, 0.3491, 4.3942, 0.7730, -0.2410, 0.1223, 0.0461, 0.2987, 0.0598, 0.0231, -0.0492, 1.2782, 1.6518, 0.2168, 0.5576]
se_laguna_and_shin_lee = [0.0509, 0.0583, 0.0922, 0.0940, 0.1212, 0.1236, 0.0665, 0.0251, 0.1284, 0.3535, 0.2814, 0.0993, 0.1018, 0.0538, 0.0601, 0.0586, 0.0665, 0.1817, 0.1970, 0.0882, 0.0888]
effects = List.concat(List.concat(effects_mesurado,effects_laguna_and_shin_lee),[effect_menting])
//[effect_menting, 0.058, 0.039, 0.115, 0.375, -0.03, -0.069, 0.679, 0.398, 0.317, 0.549]
se = List.concat(List.concat(se_mesurado,se_laguna_and_shin_lee),[se_menting]) //= [se_menting, 0.278, 0.287, 0.117, 0.224, 0.100, 0.107, 0.152, 0.084, 0.072, 0.313]
SampleSet.fromList(effects)
`, cea_functions,{distributionChartSettings: {showSummary: true}})