Code:
. clear . mat foo = [1,2,3,4,5] . set obs `=colsof(foo)' number of observations (_N) was 0, now 5
Code:
. sca Three = 3 . forvalues i = 1/`=Three' { 2. dis `i' 3. } 1 2 3
Code:
. clear . set obs 4 number of observations (_N) was 0, now 4 . forvalues i=1/`=_N' { 2. dis `i' 3. } 1 2 3 4
My question is, How is this construct described above called, and where in the Stata manuals I can read systematically regarding the rules according which this construct operates?
0 Response to How is this construct `=function(argument)', `=scalar_name', `=scalar_value' etc. called, and where can I read more about it?
Post a Comment