Hello -
I'm running a fuzzy RD, and I'd like to easily create a coefficient table that just reports the coefficient and se on the discontinuity (Ti). So far I've been using outreg2 and then copying and pasting as needed, but considering I have six specifications and 14 different bandwidths, this is a pain. My instinct is to do something like:
matrix BSE = J(28, 6, .)
ivregress 2sls y ex (end=z)
matrix BSE[1,1] = _b[end]
matrix BSE[2,1] = _se[end]
With each column representing a specification and each (two) rows representing a bandwidth. However, I'm going to need to put this in Excel, so I really want the standard errors to already be in parentheses for me. I cannot figure out how to do this. estimate store doesn't seem to help, neither does esttab. Any thoughts would be appreciated.
Thank you,
Kramer
I'm running a fuzzy RD, and I'd like to easily create a coefficient table that just reports the coefficient and se on the discontinuity (Ti). So far I've been using outreg2 and then copying and pasting as needed, but considering I have six specifications and 14 different bandwidths, this is a pain. My instinct is to do something like:
matrix BSE = J(28, 6, .)
ivregress 2sls y ex (end=z)
matrix BSE[1,1] = _b[end]
matrix BSE[2,1] = _se[end]
With each column representing a specification and each (two) rows representing a bandwidth. However, I'm going to need to put this in Excel, so I really want the standard errors to already be in parentheses for me. I cannot figure out how to do this. estimate store doesn't seem to help, neither does esttab. Any thoughts would be appreciated.
Thank you,
Kramer
Comment