Hi all,
I'm running a regression on panel data, where I want the regression to be run separately on each catagory (Fullid):
I know that my regression is working because I can see the table results as they pop up in Stata. However, when I got to save them using:
I end up with only the final regression result (ex. the result of the regression on the last category). Does anyone have advice on how to get the results to save for each category that I run the regression for?
Thank you!
I'm running a regression on panel data, where I want the regression to be run separately on each catagory (Fullid):
Code:
bysort Fullid: regress height sign
Code:
esttab using "results", rtf replace
Thank you!
Comment