如何使用help宏中的expansion_optr?

时间:2016-08-04 19:22:07

标签: stata

在靠近底部的stata help macro页面中显示where expansion_optr is并列出以下内容:

  • ++ lclname
  • lclname ++
  • - lclname
  • = EXP
  • :extended_fnm
  • .class_directive
  • macval(lclname)

是否有人知道任何文档(超出macro帮助文件中的内容)提供了一些如何使用这些操作的示例?如果找不到好的文档,那么使用带expansion_optr的宏的任何示例都会有所帮助。

1 个答案:

答案 0 :(得分:3)

您是否研究过广泛的备注和示例部分in the manual?您可以通过单击帮助文件顶部的蓝色[P] macro链接来访问此条目。

以下是一些可以使用的示例:

local i=0
local j=0
while `i'<= 1 {
    di "Increment i=`i' immediately to get `++i'"
    di "    i is now `i'"
    di "j=`j' plus 1 will be (`j++'+1) next time"
    di "    j is currently `j'"
}

sysuse auto, clear
des price
local label: variable label price
di as red "price's label is `label'"

让你:

enter image description here