Hello, my model looks like this
SLL = a + B*GR + i.country + i.year + i.ID + Ei
the dependent variable is a dummy variable that takes 1 if a bank issued an SLL, otherwise 0, the problem is I'm dealing with a period of 3 years from 2020 to 2023 and i want to include Year fixed effects, how i can add it to my data table and interpret it in stata
Thank you
SLL = a + B*GR + i.country + i.year + i.ID + Ei
the dependent variable is a dummy variable that takes 1 if a bank issued an SLL, otherwise 0, the problem is I'm dealing with a period of 3 years from 2020 to 2023 and i want to include Year fixed effects, how i can add it to my data table and interpret it in stata
Thank you
| ID | SLL 2020 | SLL 2021 | SLL 2022 |
| 1 | 0 | 1 | 1 |
| 2 | 1 | 1 | 1 |
| 3 | 0 | 0 | 1 |
| 4 | 1 | 0 | 1 |

Comment