statistics bootstrap library in Python?

admin

Administrator
Staff member
Is there a statistics bootstrap library in
Code:
Python
?

I would like to have functionality similar to what is offered in
Code:
R bootstrap
:

<a href="http://statistics.ats.ucla.edu/stat/r/library/bootstrap.htm" rel="nofollow">http://statistics.ats.ucla.edu/stat/r/library/bootstrap.htm</a>

Searching I found:

<a href="http://mjtokelly.blogspot.com/2006/04/bootstrap-statistics-in-python.html" rel="nofollow">http://mjtokelly.blogspot.com/2006/04/bootstrap-statistics-in-python.html</a> (the link to the code is broken)

<a href="http://adorio-research.org/wordpress/?p=9048" rel="nofollow">http://adorio-research.org/wordpress/?p=9048</a>

<a href="https://github.com/cgevans/scikits-bootstrap" rel="nofollow">https://github.com/cgevans/scikits-bootstrap</a>

but these above do not seem to offer all functionality (in particular the probability weights).

Any pointers?

This got recently added to <a href="http://docs.scipy.org/doc/numpy/reference/generated/numpy.random.choice.html" rel="nofollow">numpy.random</a>

Thanks