Dear Stata users,
I saw there are some posts about this, but I could not find a solution. I have a panel dataset. I am running one logit regression, year by year, for 13 years, in a loop.
forvalues i = 2006(1)2018 {
logit Y X1 X2 X3 X4, vce (cluster ID), if year ==`i'
}
I would like to visualize the coefficients of my main independent variable over time, with confidence intervals. I have just installed coefplot command, which appears to be suitable for multiple models. However, still finding a way to make a graph. I hope some has experience with it. Thank you in advance!
Best regards,
Jovana
I saw there are some posts about this, but I could not find a solution. I have a panel dataset. I am running one logit regression, year by year, for 13 years, in a loop.
forvalues i = 2006(1)2018 {
logit Y X1 X2 X3 X4, vce (cluster ID), if year ==`i'
}
I would like to visualize the coefficients of my main independent variable over time, with confidence intervals. I have just installed coefplot command, which appears to be suitable for multiple models. However, still finding a way to make a graph. I hope some has experience with it. Thank you in advance!
Best regards,
Jovana
Comment