From dda652cef7847333fd28ea6729cce7b032c28426 Mon Sep 17 00:00:00 2001
From: "Nicolas P. Rougier"
Compute bootstrapped 95% confidence intervals for the mean of a 1D array X (i.e., resample the elements of an array with replacement N times, compute the mean of each sample, and then compute percentiles over the means). (★★★)
-+ +# Author: Jessica B. Hamrick @@ -971,7 +968,8 @@ the mean of each sample, and then compute percentiles over the means). (★★ confint = np.percentile(means, [2.5, 97.5]) print(confint)-