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

📄 describe.ado

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