📄 tab2.ado
字号:
*! version 2.2.4 29sep2004
program define tab2, byable(recall)
version 6, missing
syntax varlist(min=2) [if] [in] [fweight] [, *]
tempvar touse
mark `touse' `if' `in' [`weight'`exp']
local weight "[`weight'`exp']"
capture {
tokenize `varlist'
local stop : word count `varlist'
local i 1
while `i' <= `stop' {
local L "``i''"
mac shift
local varlist "`*'"
local stop : word count `varlist'
local j 1
while `j' <= `stop' {
#delimit ;
noisily di _n
`"-> tabulation of `L' by ``j'' `if' `in'"' ;
cap noisily tab `L' ``j''
if `touse' `weight' , `options' ;
#delimit cr
if _rc!=0 & _rc!=1001 { exit _rc }
local j = `j' + 1
}
tokenize `varlist'
}
}
error _rc
end
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -