I have a question regarding deciding which model to use for my analysis of my data with binary dependent variable.
I am not quite sure if I need to use a binary panel regression (xt.logic) or, if I should use a regular logistic regression (logit).
Most papers regarding this topic just use a simple logit model, which is in my opionion not good? (e.g http://dx.doi.org/10.2139/ssrn.3187667 p.17)
In essence, I want to compare determinants on the binary outcomes (issuance of a bond) over the 1. entire period, 2. the period before COVID, and 3. the period during Covid.
Questions i am not sure about:
1. should i use normal logit or xtlogit?
2. If xtlogit: does it make sense to use a random effect model? For most model specifications the hausman tests suggests
3. what is the difference between the 2 variants (I dont really understand whats the difference):
Since i have some dummy variables that do not change variables i am considering a RE or simple logit model over the FE.
Here is an example data set:
Thank you for your help in advance!
I am not quite sure if I need to use a binary panel regression (xt.logic) or, if I should use a regular logistic regression (logit).
Most papers regarding this topic just use a simple logit model, which is in my opionion not good? (e.g http://dx.doi.org/10.2139/ssrn.3187667 p.17)
In essence, I want to compare determinants on the binary outcomes (issuance of a bond) over the 1. entire period, 2. the period before COVID, and 3. the period during Covid.
Questions i am not sure about:
1. should i use normal logit or xtlogit?
2. If xtlogit: does it make sense to use a random effect model? For most model specifications the hausman tests suggests
3. what is the difference between the 2 variants (I dont really understand whats the difference):
xtset Firm Date4. Would my model of choice change if I switch to monthly or quarterly observations?
xtlogit BinaryOutcome Total Assets NetIncome, re or fe
and
xtset firm
xtlogit BinaryOutcome Total Assets NetIncome i.date, re or fe
Since i have some dummy variables that do not change variables i am considering a RE or simple logit model over the FE.
Here is an example data set:
Date | Firm | Binary Outcome | Total Assets | Net Income | Dummy if certain country |
2016 | A | 0 | 50 | 20 | 1 |
2017 | A | 0 | 60 | 30 | 1 |
2018 | A | 1 | 70 | 40 | 1 |
2019 | A | 1 | 65 | 60 | 1 |
2020 | A | 0 | 85 | 45 | 1 |
2021 | A | 0 | 90 | 54 | 1 |
2016 | B | 1 | 20 | 18 | 0 |
2017 | B | 0 | 34 | 13 | 0 |
2018 | B | 1 | 44 | 18 | 0 |
2019 | B | 0 | 45 | 5 | 0 |
2020 | B | 1 | 60 | 15 | 0 |
2021 | B | 0 | 80 | 7 | 0 |
... | ... | ||||
... | ... | ... | |||
... | ... | ... | |||
... | ... | ... | |||
... | ... | ... | |||
... | ... | ... |
Comment