Randy Olson
Randy Olson

Reputation: 3221

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?

Upvotes: 11

Views: 6771

Answers (1)

Randy Olson
Randy Olson

Reputation: 3221

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!

Upvotes: 21

Related Questions