Using Stata13 and I need to run a regression analyzing the interactions between an indicator variable (binary, 1/0), var1, and each of four continuous variables, vars2-5, but I want to exclude the main effects of all five variables. So the regression I want to run is:
regress depvar var1*var2 var1*var3 var1*var4 var1*var5
Can be this simplified within the regression command? Or am I better off just creating the interactions outside of the regression command? Thanks, Robert Biggert
regress depvar var1*var2 var1*var3 var1*var4 var1*var5
Can be this simplified within the regression command? Or am I better off just creating the interactions outside of the regression command? Thanks, Robert Biggert
Comment