X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=ultimate.js;h=5642c73ef4175d47561ef622f6154e2b7a2d7112;hb=6a6db07b491068532a3c34b522f3a00fc900870b;hp=04e9bad802479d3a2a44566eb937c0a3572931f3;hpb=ec69f2a6b3a2da85c0345ef983afe2a04fb94efc;p=pkanalytics diff --git a/ultimate.js b/ultimate.js index 04e9bad..5642c73 100644 --- a/ultimate.js +++ b/ultimate.js @@ -753,14 +753,14 @@ function make_poisson_ci(val, num, z, inverted) // Fix the signs so that we don't get -0.00. low = Math.max(low, 0.0); - // The display range of 0 to 0.25 is fairly arbitrary. So is the desired 0.05 per point. + // The display range of 0 to 0.5 is fairly arbitrary. So is the desired 0.05 per point. let avg = val / num; return { 'val': avg, 'lower_ci': low, 'upper_ci': high, 'min': 0.0, - 'max': 0.25, + 'max': 0.5, 'desired': 0.05, 'inverted': inverted, };