我正在尝试forvalues
在 Stata 11.2 版的循环中标记变量。
但是,我无法让扩展字符串函数word # of string
习语工作:
local names `""Growth" "Mature" "All""'
forvalues i = 0/2 {
local name : word `i' of `names'
display "`name'"
}
这遵循Statalist 解决方案,但我不断收到invalid syntax
错误。
我也试过local names Growth Mature All
了,但这也不起作用。
有没有办法在算法上做到这一点?