REPRO-Bench / 17 /replication_package /code /lib /stata /ado /reg_interaction.ado
ljx529's picture
Duplicate from chuxuan/REPRO-Bench
c35658f
Raw
History Blame Contribute Delete
132 Bytes
program reg_interaction
syntax, yvar(str) [indep(str) if(str)]
reg `yvar' B_1 L_1 B_L_1_1 `indep' `if', robust
end
exit