Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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?

like image 235
Randy Olson Avatar asked May 09 '12 21:05

Randy Olson


1 Answers

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!

like image 114
Randy Olson Avatar answered Oct 07 '22 06:10

Randy Olson