Giter VIP home page Giter VIP logo

bootstrap.jl's Introduction

Bootstrap.jl: Statistical Bootstrapping

Motivation

Bootstrapping is a widely applicable technique for statistical estimation.

img

Functionality

  • Bootstrapping statistics with different resampling methods:

    • Random resampling with replacement (BasicSampling)
    • Antithetic resampling, introducing negative correlation between samples (AntitheticSampling)
    • Balanced random resampling, reducing bias (BalancedSampling)
    • Exact resampling, iterating through all unique resamples (ExactSampling): deterministic bootstrap, suited for small samples sizes
    • Resampling of residuals in generalized linear models (ResidualSampling, WildSampling)
  • Confidence intervals:

    • Basic (BasicConfInt)
    • Percentile (PercentileConfInt)
    • Normal distribution (NormalConfInt)
    • Studendized (StudentConfInt)
    • Bias-corrected and accelerated (BCa) (BCaConfInt)

Package Status

Reports on package builds for all platforms and test coverage are collected on the package status page.

Installation

The Bootstrap package is part of the Julia ecosphere and the latest release version simply be installed with

Pkg.add("Bootstrap")

More details on packages and how to manage them can be found in the package section of the Julia documentation.

Examples

This example illustrates the basic usage and cornerstone functions of the package. More elaborate cases are covered in the documentation notebooks.

  using Bootstrap

Our observations r are sampled from a standard normal distribution.

  r = randn(100);

Let's bootstrap the standard deviation (std) of our data, based on 1000 resamples and with different bootstrapping approaches.

  n_boot = 1000

  ## basic bootstrap
  bs1 = bootstrap(r, std, BasicSampling(n_boot))

  ## balanced bootstrap
  bs2 = bootstrap(r, std, BalancedSampling(n_boot))

We can explore the properties of the bootstrapped samples, for example estimated bias and standard error of our statistic.

  bias(bs1)
  se(bs1)

Further, we can estimate confidence intervals for our statistic of interest, based on the bootstrapped samples.

  ## calculate 95% confidence intervals
  cil = 0.95;

  ## basic CI
  bci1 = ci(bs1, BasicConfInt(cil));

  ## percentile CI
  bci2 = ci(bs1, PercentileConfInt(cil));

  ## BCa CI
  bci3 = ci(bs1, BCaConfInt(cil));

  ## Normal CI
  bci4 = ci(bs1, NormalConfInt(cil));

References

The bootstrapping wikipedia article is a comprehensive introduction into the topic. An extensive description of the bootstrap is the focus of the book Davison and Hinkley (1997): Bootstrap Methods and Their Application. Most of the methodology covered in the book is implemented in the boot package for the R programming language. More references are listed in the documentation for further reading.

Contributions and Feedback

Contributions of any kind are very welcome. Please feel free to open pull requests or issues if you have suggestions for changes, ideas or questions.

Frequently Asked Questions

  • Does it have anything to do with twitter themes, webpage frameworks, compiling, ...?

    No, not really. This package focuses on an interesting area in statistics, but the term bootstrapping is also used in different other contexts. You can check wikipedia for a longer list of meanings asscoiated with bootstrapping.

bootstrap.jl's People

Contributors

juliangehring avatar nignatiadis avatar tkelman avatar

Stargazers

 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.