describe.ado

来自「是一个经济学管理应用软件 很难找的 但是经济学学生又必须用到」· ADO 代码 · 共 31 行

ADO
31
字号
*! version 2.0.2  24feb2005
program describe, rclass
	version 9
	local version : di "version " string(_caller()) ":"
	syntax [anything] [using] [, SImple *] 

	local varlist `"`anything'"'

	if ("`simple'" == "") { /* simple not used */
		`version' _describe `0'
		return add
	}
	else {			/* simple was used */
		if (`"`options'"' != "") {
		  di as err "simple may not be combined with other options"
		  exit 198
		}

		if (`"`using'"' != "") {
		  di as err "using not allowed"
		  exit 101
		}

		ds `varlist'
		return add
		qui `version' _describe `varlist'
		return add
	}
end

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?