I am saving coefficients using regsave (from ssc) and I am able to use the 'addlabel' option to add one new variable for said model, but is it possible to add multiple labels in one call? I tried this, using two 'addlabel' sequentially:
But that is not allowed.
Code:
reg y x1 x2 regsave using "C:\Myfiles\results.dta", addlabel(model, 1) addlabel (type, A) ci replace
Comment