Hi
I try to replicate an equation from the Paper of Nazrul Islam (1995). It's about the Solow Model.
I ran the following fixed-effects regression:

Now I'm trying to plot the fixed effects on the y-axis and the gdp_growth on the x-axis. At the moment, I got just the following scatter plot:

Has anyone an idea, how I can create the scatter plot with the fixed effects on the y-axis, the gdp growth on the x-axis and each country should only be once included.
Thanks in advance for your help.
I used STATA 17.0
I try to replicate an equation from the Paper of Nazrul Islam (1995). It's about the Solow Model.
I ran the following fixed-effects regression:
Code:
encode countrycode, generate(countrycode_numeric) xtset countrycode_numeric year xtreg gdp_growth x ln_gdp_pc_t_1 if OECD == 1, fe vce(robust)
Now I'm trying to plot the fixed effects on the y-axis and the gdp_growth on the x-axis. At the moment, I got just the following scatter plot:
Code:
xtreg gdp_growth x ln_gdp_pc_t_1 if OECD == 1, fe vce(robust) scatter countrycode_numeric gdp_growth
Has anyone an idea, how I can create the scatter plot with the fixed effects on the y-axis, the gdp growth on the x-axis and each country should only be once included.
Thanks in advance for your help.
I used STATA 17.0

Comment