Search code examples
pythonstatisticsstatistics-bootstrap

Python statistics package(s) for bootstrapping confidence intervals and non-parametric multiple dataset comparisons


I'm looking for a Python package that can compute either/both bootstrapped confidence intervals and perform non-parametric multiple dataset comparisons. Does anyone know of one?


Solution

  • With the help of my lab mates, I found packages for all the statistics I would need.

    Bootstrapped CIs: http://scikits.appspot.com/bootstrap

    ANOVA: http://docs.scipy.org/doc/scipy/reference/generated/scipy.stats.f_oneway.html

    I hope this is helpful for anyone else who finds themselves in my shoes!