Skip to main content

Statistical Bootstrap with Pandas made easy

Project description

Pandas Bootstrap

Ruff Tests PyPI version docs

Statistical Bootstrap with Pandas made easy.

Installation

pip install pandas-bootstrap

Usage

The module is very easy to use.

  1. import bootstrap
  2. define statistic function: def some_func(df: pd.DataFrame | pd.Series):
  3. get bootstrapped samples: df.boot.get_samples(bfunc=some_func, B=100)

Below is a simple example of bootstrapping the mean of two columns.

import pandas as pd

import bootstrap

df = pd.DataFrame({
    'a': [1, 2, 3, 4, 5],
    'b': [6, 7, 8, 9, 10],
})

def mean_of_columns(df):
    return df.mean(numeric_only=True)

sample_kwargs = dict(random_state=42)
df_bootstrap = df.boot.get_samples(bfunc=mean_of_columns, B=5, sample_kwargs=sample_kwargs)

which results in:

          a    b
sample          
0       3.0  8.0
1       2.6  7.6
2       4.0  9.0
3       3.2  8.2
4       3.0  8.0

Documentation

Read more in the documentation

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pandas_bootstrap-0.2.1.tar.gz (6.0 kB view hashes)

Uploaded Source

Built Distribution

pandas_bootstrap-0.2.1-py3-none-any.whl (7.4 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page