Hello,
I have a regression of the form:
where year is a categorical variable from 1990 to 2020. I want to store the estimates for each year and plot them in a scatter plot with a fitted regression line. Something along the lines of saving the estimates as "yearcoefficients" and the plotting
Is this possible at all?
Thank you very much!
Joan
I have a regression of the form:
Code:
reg yvar xvar zvar i.year
Code:
scatter year yearcoefficients || lfit year yearcoefficients
Thank you very much!
Joan
Comment