📄 _giqr.ado
字号:
*! version 3.1.1 01oct2004
program define _giqr
version 6, missing
syntax newvarname =/exp [if] [in] [, *]
tempvar p75 p25 touse
mark `touse' `if' `in'
quietly {
egen double `p25'=pctile(`exp') if `touse', `options' p(25)
egen double `p75'=pctile(`exp') if `touse', `options' p(75)
gen `typlist' `varlist' = `p75'-`p25' if `touse'
}
end
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -