pysal / spglm

SParse Generalized Linear Models (spglm)
https://pysal.org/spglm/
BSD 3-Clause "New" or "Revised" License
33 stars 20 forks source link

logistic GLM? #27

Closed lfs119 closed 4 years ago

lfs119 commented 4 years ago

Thanks for your good job, But I noticed that Logistic GLM is absence, which mentions in the README.md, and family.py does not contain class Logisic(Family) which is parallel with class Poisson(family)、Gaussian(family). Looking forward for your reply!

ljwolf commented 4 years ago

I think it's sufficient to use family=Binomial() to get a logistic regression. (notebook)

lfs119 commented 4 years ago

Thanks a lot.