Hello everyone,
I need to run several regressions using the tuples command:
And I need to generate a table presenting the average coefficient obtained, average standard deviation, etc of all these regressions. Additionally, I would like to have a column with the fraction of times a variable was significant (say at 5 or 10%). The problem is I have no idea how to do this.
If any of you has any idea, I would be much appreciated.
Best,
Danielle
I need to run several regressions using the tuples command:
Code:
tuples roa1 roa2 pp1 pp2 pp3 pp4 pp5 pp6, min(2) max(2) forval i = 1/`ntuples' { probit x1 x2 x3 x4 x5 `tuple`i'' , vce(robust) margins, dydx(*) }
If any of you has any idea, I would be much appreciated.
Best,
Danielle
Comment