I am trying to run multiple regressions where, on each iteration, another independent variable is added to the regression on each loop?
local vlist0 foo bar dar
local vlist1
foreach item in `vlist0'
[add `item' to `vlist1']
regress dependentVar `vlist1'
I can't seem to find any documentation on appending to local varlists or anything relating to this, so your help is greatly appreciated.
Thanks!