in lib/report.py [0:0]
def get_cohen_effect_meaning(d): d_abs = abs(d) if d_abs <= 0.05: return "Small" if d_abs <= 0.1: return "Medium" else: return "Large"