_gpc.ado
来自「是一个经济学管理应用软件 很难找的 但是经济学学生又必须用到」· ADO 代码 · 共 16 行
ADO
16 行
*! version 7.0.2 01oct2004
program define _gpc
version 6.0, missing
syntax newvarname =/exp [if] [in] [, prop BY(varlist)]
marksample touse, novarlist
quietly {
local x = 100
if "`prop'" != "" {
local x = 1
}
sort `touse' `by'
by `touse' `by': gen `typelist' `varlist' =sum(`exp') if `touse'
by `touse' `by': replace `varlist' = `x' * `exp'/`varlist'[_N]
}
end
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?