Re: Robust statistics and optimmization from Python

2005-08-29 Thread Tim Churches
[EMAIL PROTECTED] wrote: > Robert Kern wrote: > > > >>If you find suitable >>FORTRAN or C code that implements a particular "robust" algorithm, it >>can probably wrapped for scipy relatively easily. > > > An alternative would be to call R (a free statistical package) from > Python, using somet

Re: Robust statistics and optimmization from Python

2005-08-29 Thread araki
use R. it's pretty highend, and there is an interface for python. -- http://mail.python.org/mailman/listinfo/python-list

Re: Robust statistics and optimmization from Python

2005-08-29 Thread beliavsky
Robert Kern wrote: > If you find suitable > FORTRAN or C code that implements a particular "robust" algorithm, it > can probably wrapped for scipy relatively easily. An alternative would be to call R (a free statistical package) from Python, using something like the R/SPlus - Python Interface a

Re: Robust statistics and optimmization from Python

2005-08-29 Thread Robert Kern
[EMAIL PROTECTED] wrote: > I use Python to generate a huge amount of data in a .csv file which I > then process using Excel. In particular, I use Excel's solver to solve > a number of non-linear equation, and then regress the results of > hundreds of calls to Solver against a set of known values, e

Robust statistics and optimmization from Python

2005-08-29 Thread tkpmep
I use Python to generate a huge amount of data in a .csv file which I then process using Excel. In particular, I use Excel's solver to solve a number of non-linear equation, and then regress the results of hundreds of calls to Solver against a set of known values, enabling me to calibrate my model.