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
Standard errors with new -xthdidregress- command in Stata 18I am trying to understand how -xthdidregress- estimates standard errors for difference-in-difference…
bar chart multiple global ifsHello, I am working on my masters thesis and am having some troubles visualizing the data as I woul…
Choosing the Correct Panel Data ModelHi there, I am estimating a fiscal reaction function in dynamic form (lagged dependent variable) and…
Baseline Balance - T-Test - Missing ValuesI want to create a balance table on STATA. It is a baseline dataset conducted as a part of an RCT. H…
Help with stcrreg / competing regressionDear All, I am trying to perform a competing regression analysis but receiving the following error.…
Subscribe to:
Post Comments (Atom)
0 Response to standard errors when using Lubotsky-Wittenberg methodology for proxy combination
Post a Comment