Fixed Effect Logit Model in R – Implementation and Analysis

econometricsfixed-effects-modellogitr

I would like to perform a Fixed effect logit estimation in R.
Can someone point out a package that can do the job?

Note: For the time being I'm not really interested in the random effect.

Update;

Essentially I wonder if there is the plm package for a binary response model.

Here is some documentation for the plm package:

http://cran.r-project.org/web/packages/plm/index.html
http://dss.princeton.edu/training/Panel101.pdf

Best Answer

There is a new R Package called "bife" that performs Fixed Effects binary logit Models.

https://cran.r-project.org/web/packages/bife/vignettes/howto.html

Related Question