Quite often we run variations on regressions, including or excluding (sets of) variables. Copy-pasting the regression and eliminating the variables to be excluded is one way, but given that we speak of sets of variables why not use locals to do the work for you:
local actgeb="a_sales a_rd a_prod a_plan a_kwal a_mana"
local agegrp="age_c1 age_c2 age_c4 age_c5 age_c6 age_c7"
local educat="edu_c1 edu_c2 edu_c3 edu_c4 edu_c5 edu_c7"
local tengrp="tenure_c1 tenure_c3 tenure_c4 tenure_c5 "
local layer="layer_c2 layer_c3 layer_c4 layer_c5 layer_c6 "
local eval="eval_c1 eval_c3 eval_c4"
stset date, origin(time 13223) exit(time 14340) id(birc)
stcox `agegrp' `tengrp' `educat' `actgeb' `layer', bases(s)
stcox `tengrp' `educat' `actgeb' `layer', bases(s)
[...]
One caveat: don’t put to much variabels in one local … if it gets too long it just leaves out the last part.
Leave a Reply
You must be logged in to post a comment.