tab1.ado
来自「是一个经济学管理应用软件 很难找的 但是经济学学生又必须用到」· ADO 代码 · 共 22 行
ADO
22 行
*! version 2.2.4 29sep2004
program define tab1, byable(recall)
version 6, missing
syntax varlist [if] [in] [fweight] [, *]
tokenize `varlist'
local stop : word count `varlist'
local i 1
tempvar touse
mark `touse' `if' `in' [`weight'`exp']
local weight "[`weight'`exp']"
capture {
while `i' <= `stop' {
noisily di _n `"-> tabulation of ``i'' `if' `in'"'
cap noisily tab ``i'' if `touse' `weight' , `options'
if _rc!=0 & _rc!=1001 { exit _rc }
local i = `i' + 1
}
}
error _rc
end
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?