重用Stata中的代码行,类似于JavaScript函数?

时间:2015-04-24 18:23:00

标签: stata

我在Stata do-file中有一些代码行,我想重用/执行do文件中的不同点。类似于JavaScript函数......但是我不一定需要输入变量。

例如,我有一些代码:

*code to reuse
foreach x in test1 test2 test3{
rename variable_`x' variablenew_`x'
}

我想在do文件的不同点执行这3行代码。好像有办法在do文件中标记这三行codeA然后execute codeA

有什么建议吗?

1 个答案:

答案 0 :(得分:0)

检查help program

示例程序(不带参数):

// define program
capture program drop hello
program hello
    display "hello world!"
end

// try it out
hello