diff --git a/README.html b/README.html index afc9e14..19ccbc8 100644 --- a/README.html +++ b/README.html @@ -958,9 +958,6 @@ the rows which only contain integers and which sum to n. (★★★)
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)-