⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 tab1.ado

📁 是一个经济学管理应用软件 很难找的 但是经济学学生又必须用到
💻 ADO
字号:
*! 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -