I am trying to compute the standard errors of an estimate obtained using the Lubotsky-Wittenberg (2006) methodology for proxy combination. Here it is the list of commands:
gen a=.
gen b=.
gen c=.
gen d=.
gen e=.
gen f=.
reg y x_1 x_2 x_3
replace a = _b[x_1]
replace b = _b[x_2]
replace c = _b[x_3]
ivreg x_1 ( x_1 = y)
replace d = _b[x_1]
ivreg x_2 ( x_1 = y)
replace e = _b[x_1]
ivreg x_3 ( x_1 = y)
replace f = _b[x_1]
qui gen pbhat =a*d + b*e + c*f
sum pbhat
The estimate is "pbhat" that is a linear combination of multivariate regression coefficients and IV regression coefficients. Can you help me in obtaining the standard errors with this procedure?
Thank you in advance.
Related Posts with standard errors when using Lubotsky-Wittenberg methodology for proxy combination
Modifying the collapse option in the xtabond2 commandI am implementing system GMM using the xtabond2 command. The data series is very long. This long his…
Literature on Stata's Extended Regression Models (ERMs): is there any?I'm using extended probit (eprobit) and extended linear regression (eregress) in my dissertation. I'…
Recentered Influence Function (RIF) regression and decompositionDear all, Thanks to Prof. Baum the newest update to the package -rif- is now available, with the ver…
ppml_panel_sg: RESET test (p-value)Hi, I am trying the RESET test (p-value) for a gravity model with fixed effects: (exporter-year, im…
C:\Users\AppData\Local\Temp\ST_04000001.tmp * *not foundI´m converting spss files into .dta files through many loops and one of those is like the following …
Subscribe to:
Post Comments (Atom)
0 Response to standard errors when using Lubotsky-Wittenberg methodology for proxy combination
Post a Comment