I have these four regressions:
What I am currently doing is: making an Excel sheet table from all these coefficients, and making a twoway line graph with the four lines representing the four states, with year (y2012-y2019) in the x-axis.
Is there a way to do that using -coefplot- or -twoway line- or any other command?
Thanks so much!
Code:
reg log_wage y2013 y2014 y2015 y2016 y2017 y2018 y2019 if state=="AL" reg log_wage y2013 y2014 y2015 y2016 y2017 y2018 y2019 if state=="GA" reg log_wage y2013 y2014 y2015 y2016 y2017 y2018 y2019 if state=="FL" reg log_wage y2013 y2014 y2015 y2016 y2017 y2018 y2019 if state=="SC"
Is there a way to do that using -coefplot- or -twoway line- or any other command?
Thanks so much!
Comment