Re: [Scikit-learn-general] Add polynomial and MARS regression methods

2013-12-08 Thread Jacob Vanderplas
Hi, For Polynomial regression, take a look at this PR, which was recently merged: https://github.com/scikit-learn/scikit-learn/pull/2585 An example of this new feature in use is here: https://github.com/scikit-learn/scikit-learn/blob/master/examples/linear_model/plot_polynomial_interpolation

Re: [Scikit-learn-general] Add polynomial and MARS regression methods

2013-12-08 Thread Alexandre Gramfort
hi, have a look at: https://github.com/scikit-learn/scikit-learn/pull/2285 any help to test/review this PR is very welcome. Alex On Sun, Dec 8, 2013 at 1:53 PM, Chen Wang wrote: > > Dear all, > > I mainly use scikit learn do regression analysis. I found that this package > didn't have polyno

[Scikit-learn-general] Add polynomial and MARS regression methods

2013-12-08 Thread Chen Wang
Dear all, I mainly use scikit learn do regression analysis. I found that this package didn't have polynomial regression and Multivariate Adaptive Regression Splines(MARS) regression methods which are famous in my research area. If the authors have no time, I want to contribute these two method