When using the *synth* command in stata and specifying the nested option, changing the order of the predictors yields different weights on the control units. Below is an example:
clear
sysuse smoking
tsset state year
synth cigsale beer(1984(1)1988) lnincome retprice age15to24 cigsale(1988) cigsale(1980) cigsale(1975) ///
, trunit(3) trperiod(1989) nested
synth cigsale cigsale(1988) cigsale(1980) cigsale(1975) beer(1984(1)1988) lnincome retprice age15to24///
, trunit(3) trperiod(1989) nested
I should note that the results don't change when you do not specify the nested option. I'd appreciate if anyone could give their thoughts about why the results change when simply reordering the predictors when using the nested option.
clear
sysuse smoking
tsset state year
synth cigsale beer(1984(1)1988) lnincome retprice age15to24 cigsale(1988) cigsale(1980) cigsale(1975) ///
, trunit(3) trperiod(1989) nested
synth cigsale cigsale(1988) cigsale(1980) cigsale(1975) beer(1984(1)1988) lnincome retprice age15to24///
, trunit(3) trperiod(1989) nested
I should note that the results don't change when you do not specify the nested option. I'd appreciate if anyone could give their thoughts about why the results change when simply reordering the predictors when using the nested option.
Comment