Hi everyone!
I run the following loop:
This loop runs over three subsamples defined by the variables var1, var2, and var3. Within each subsample, it performs:
I'd appreciate your help!
I run the following loop:
Code:
global Vars var1 var2 var3
foreach v in $Vars{
reg y x if `v'
reg y x z if `v'
esttab using "results.csv", se label append
}
- Estimation of two regressions
- Appending these estimates to the file "results.csv"
I'd appreciate your help!

Comment