stata中循环语句的命令
发布网友
发布时间:2022-04-20 02:47
我来回答
共2个回答
热心网友
时间:2023-07-25 17:00
forvalues 语句——数字的循环
while 语句——条件循环
foreach 语句——变量、暂元、文件等的循环
这道题应该用foreach, 在stata-do file中输入help foreach可以查询相关语法格式
a. 任意格式:foreach v in ...
type d1.txt
type d2.txt
type d3.txt
foreach file in d1 d2 d3{ (file是暂元的名字)
local varname id year invest market stock
insheet `varname' using `file'.txt,clear
save `file'.dta, replace
}
热心网友
时间:2023-07-25 17:01
用for..语句实现循环追问如果用foreach具体怎么写呢?把四个姓氏列出来