/* The user written program esttab produces formatted regression output in the Stata results window. I show an example below. This program is part of a larger suite of programs output regression results to either the screen or to a file that can be used in your reports. Enter "findit estout" to find this program and install it in the usual way. */ /* Define local macros with groups of independent variables */ local wrk_status "fulltime-school" local occup "tech serv farm oper" local demog "men white age childs" local geog "mw-w size" local jobatrb "jobinc1 jobmeans1" /* The following regression examples uses the Stata command nestreg to calculate extra sums of squares tests. nestreg fits nested models by sequentially adding blocks of variables and then reports comparison tests between the nested models. */ estimates clear eststo: quietly reg realrinc `wrk_status' if year==2006 eststo: quietly reg realrinc `wrk_status' `occup' if year==2006 eststo: quietly reg realrinc `wrk_status' `occup' educ race_ed if year==2006 esttab, ar2 label