sysuse auto.dta,clear //load the example dataset describe //First run the regression regress price mpg headroom trunk displacement //Report Adjusted R2 instead of R2 outreg2 using results, word replace adjr2 //Dont report R2 or Adjusted R2 outreg2 using results, word replace nor2 //Dont report number of observation outreg2 using results, word replace noobs //Report standard error on sideways outreg2 using results, word replace sideway //Report standard error on sideways outreg2 using results, word replace sideway noparen //Additional statistics outreg2 using results, word replace addstat("F-Stat",e(F),"Prob > F",e(p),"Degree of Freddom",e(df_r)) // nose, tstat, pvalue, ci, beta outreg2 using results, word replace stat(coef beta se ci) sideway //Level of confidence outreg2 using results, word replace stat(coef ci) sideway level(90) //Changing level of significance outreg2 using results, word replace stat(coef tstat) sideway alpha(0.01, 0.05) //Changing Asterisk symbols outreg2 using results, word replace stat(coef tstat) sideway alpha(0.01, 0.05) symbol(***,**) //Changing the place of asterisk (nodepvar) outreg2 using results, word replace stat(coef tstat) sideway alpha(0.01, 0.05) symbol(***,**) asterisk(tstat) //Or you can simply remove all the asterisk outreg2 using results, word replace noaster //Keep or Drop variables from the output table outreg2 using results, word replace keep(mpg trunk) //OR outreg2 using results, word replace drop(headroom displacement)