Discussion:
[Scikit-learn-general] Beta regression
Gavin Gray
2014-07-21 13:54:10 UTC
Permalink
Checking the documentation it looks like Scikit-learn does not have an
implementation of a generalized linear model where the target variable is
within the unit interval. In R they call it beta regression
<http://cran.r-project.org/web/packages/betareg/vignettes/betareg.pdf>. Are
there models like this is Scikit-learn?

Thanks,
-Gavin
Andy
2014-07-22 09:04:13 UTC
Permalink
There is no beta regression, and very few generalized linear models in
general :-/
Post by Gavin Gray
Checking the documentation it looks like Scikit-learn does not have an
implementation of a generalized linear model where the target variable
is within the unit interval. In R they call it beta regression
<http://cran.r-project.org/web/packages/betareg/vignettes/betareg.pdf>. Are
there models like this is Scikit-learn?
Thanks,
-Gavin
The University of Edinburgh is a charitable body, registered in
Scotland, with registration number SC005336.
------------------------------------------------------------------------------
Want fast and easy access to all the code in your enterprise? Index and
search up to 200,000 lines of code with a free copy of Black Duck
Code Sight - the same software that powers the world's largest code
search on Ohloh, the Black Duck Open Hub! Try it now.
http://p.sf.net/sfu/bds
_______________________________________________
Scikit-learn-general mailing list
https://lists.sourceforge.net/lists/listinfo/scikit-learn-general
Mathieu Blondel
2014-07-23 02:47:39 UTC
Permalink
statsmodel has a GLM module but apparently no beta regression.

There is also a scikit-learn compatible wrapper around the GLM module here:
https://github.com/jcrudy/glm-sklearn

Mathieu
Post by Gavin Gray
Checking the documentation it looks like Scikit-learn does not have an
implementation of a generalized linear model where the target variable is
within the unit interval. In R they call it beta regression
<http://cran.r-project.org/web/packages/betareg/vignettes/betareg.pdf>.
Are there models like this is Scikit-learn?
Thanks,
-Gavin
The University of Edinburgh is a charitable body, registered in
Scotland, with registration number SC005336.
------------------------------------------------------------------------------
Want fast and easy access to all the code in your enterprise? Index and
search up to 200,000 lines of code with a free copy of Black Duck
Code Sight - the same software that powers the world's largest code
search on Ohloh, the Black Duck Open Hub! Try it now.
http://p.sf.net/sfu/bds
_______________________________________________
Scikit-learn-general mailing list
https://lists.sourceforge.net/lists/listinfo/scikit-learn-general
Loading...