Hi all,
I am using Stata 13 and I am trying to edit the notes that appear below the regression output tables generated with the outreg2 command. Here's a very quick example:
However, this simply adds a line of text at the bottom of the table saying "Clustered standard errors in parentheses", while leaving the default generated "Robust standard errors in parentheses" in place. What I actually want is to have the "Clustered standard errors in parentheses" line replace the "Robust standard errors in parentheses" one. I tried the "nonotes" after outreg2, but that simply erases every note, including the one I am trying to insert.
Thank you in advance.
I am using Stata 13 and I am trying to edit the notes that appear below the regression output tables generated with the outreg2 command. Here's a very quick example:
Code:
sysuse auto, clear reg price mpg trunk, cluster(foreign) outreg2 using table.xls, addnote(Clustered standard errors in parentheses) label replace
Thank you in advance.
Comment