Fast Python implementation of statistical bootstrap


Keywords
bootstrap, fast_bootstrap
Install
pip install fastbootstrap==1.0.21

Documentation

fastbootstrap

Fast Python implementation of statistical bootstrap


Installation

pip install fastbootstrap

Usage

import numpy as np
from fastbootstrap.bootstrap import two_sample_bootstrap

n = 10000

sample_1 = np.random.exponential(scale=1 / 0.001, size=n)
sample_2 = np.random.exponential(scale=1 / 0.00101, size=n)

p_value, boot_mean, boot_conf_interval = two_sample_bootstrap(sample_1, sample_2, plot=True)

img.png


Check interactive notebook here