Dear all,
I use user written command oaxaca_rif by Rios-Avila (Rios-Avila, F. 2020. Recentered influence functions (RIFs) in Stata: RIF regression and RIF decomposition. Stata Journal, 20(1), 51-94. https://doi.org/10.1177/1536867X20909690). I estimate the same model in two years by different deciles. I want to test for each decile if the explained and unexplained parts of decomposition changed between two years. Could anyone help me how to make a loop, since I don't want to write and to run 10 times separately the same program? I want to estimate decomposition and to test the equality of coefficients for q(10), q(20), q(30),..., q(90).
webuse nlswork, clear
program dob,eclass
oaxaca_rif ln_wage age grade tenure if year==80, by(union) rif(q(50)) rwprobit(age grade tenure) nose
matrix b0=_b[Unexplained:Pure_Unexplained]
oaxaca_rif ln_wage age grade tenure if year==88, by(union) rif(q(50)) rwprobit(age grade tenure) nose
matrix b1=_b[Unexplained:Pure_Unexplained]
matrix b= b0,b1
matrix colname b = b0 b1
ereturn post b
end
bootstrap:dob
test _b[b0]==_b[b1]
Thank you in adavance.
Best wishes,
Aleksandra
Related Posts with make loop for different deciles with eclass program
"cannot open C:\Program Files (x86)\Stata13\inter.txt" , what i can do to open the matrix file?i create a distance matrix using spmat command, and when i export the following matrix to a text for…
rolling geometric meanHi, Is there a simple way to calculate rolling geometric means, for example 10 year window? Can I u…
Interpretation of results of catigorical#continuous interaction in comparison to reparameterized regression modelHello nice to meet you After having searched this forum and google for several days without "clear…
sum of specific consecutive obsHello Everyone, I use Stata 15. The table below shows customer ID, year, and the value of transact…
DecimalsHi all, I have one question about decimals. For example, variable age and casi_total in the data se…
Subscribe to:
Post Comments (Atom)
0 Response to make loop for different deciles with eclass program
Post a Comment