this is an add on command that formats regression output.
If you don't have it, install it.
Type lookup outreg2 and follow directions for net install.
Examples:
* model 1
reg wage fem
outreg2 using lab5a, replace word
* model 2
reg wage fem union
outreg2 using lab5a, append word
* model 3
reg wage fem union edyrs
outreg2 using lab5a, append word see
Options:
outreg2 options: “using lab5a” is the file it is saved to (lab5a.rtf)
“replace” : replaces the file
“append” : adds another model to it
“word”: saves it as a rtf file.
“see”: brings up the results in the Stata data editor.
Categories: Lab4