()
| 52 | |
| 53 | // high endpoint of 95% confidence interval |
| 54 | public double confidenceHi() { |
| 55 | return mean() + CONST_K * stddev() / Math.sqrt(1.0 * thresholds.length); |
| 56 | } |
| 57 | |
| 58 | public static void main(String[] args) { |
| 59 | int n = Integer.parseInt(args[0]); |