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

📄 strate.ado

📁 是一个经济学管理应用软件 很难找的 但是经济学学生又必须用到
💻 ADO
字号:
*! version 6.4.3  17mar2005
program define strate, sortpreserve
	version 6.0, missing
	if _caller() < 8 {
		strate_7 `0'
		exit
	}

	st_is 2 analysis

	local miss = cond(_caller()<=5, "noMiss", "Miss")

	local baopts /*
		*/ Jackknife CLuster(varname) PER(real 1) 		/*
		*/ noLIst `miss' SMR(varname) Level(cilevel)	 	/*
		*/ OUTput(string asis)

	local gropts Graph noWhisker *

	syntax [varlist(default=none)] [in] [if] [, `baopts' `gropts' ]

	if "`graph'"=="" {
		_get_gropts, graphopts(`options')
		cap noi syntax [varlist(default=none)] [in] [if] [, `baopts' ]
		if _rc { 
			di in red /*
	*/ "(option is invalid or you need to specify graph option, too)"
			exit _rc
		}
	}
	else {
		_get_gropts , graphopts(`options') 		///
			getallowed(CIOPts plot addplot)
		local options `"`s(graphopts)'"'
		local ciopts `"`s(ciopts)'"'
		local plot `"`s(plot)'"'
		local addplot `"`s(addplot)'"'
		_check4gropts ciopts, opts(`ciopts')
	}
	local baopts
	local gropts

	local miss = cond(_caller()>5, cond("`miss'"=="","nomiss",""),"`miss'")
	local ev `varlist'
	if "`jackknife'" != "" {
		local jack "jack"
	}

	if "`cluster'" == "" {
		if "`jack'" != "" {
			local cluster : char _dta[st_id]
		}
	}
	else 	local jack "jack"


				/* output(filename[, replace]) */
	if `"`output'"'!="" {
		gettoken outnam output : output, parse(",")
		gettoken comma output : output, parse(",") 
		if `"`comma'"' == "," { 
			gettoken outrepl output : output, parse(" ,")
			gettoken comma output : output, parse(" ,")
			if `"`outrepl'"' != "replace" | `"`comma'"'!="" { 
				di in red "option output() invalid"
				exit 198
			}
		}
		else if `"`comma'"' != "" {
			di in red "option output() invalid"
			exit 198
		}
		else 	confirm new file `"`outnam'.dta"'
	}

	local aw : char _dta[st_w]
	st_show

	if "`list'"=="nolist" & "`graph'"=="" & `"`outnam'"'=="" {
		exit
	}

	local ttype : type _t 
	local timin : char _dta[st_t0]
	tempvar d y
	qui gen `ttype' `y' = _t
	qui replace `y' = `y' - _t0

	qui replace `y'=`y'/`per'

	local weight : char _dta[st_wt]
	if "`weight'"!="" {
        	local wt: char _dta[st_wv]
		tempvar W
		qui gen double `W' = `wt'
	}
	if "`weight'" == "iweight" | "`weight'" == "pweight"  {
		local jack "jack"
	}

	tempvar touse D Y wd wy rate jm jv jn cll clh 

	mark  `touse'  `if'  `in' 
	if "`miss'"=="nomiss" {
		markout `touse' `W' `smr' _d  `y' `ev' 
	}
	else 	markout `touse' `W' `smr' _d  `y'
	qui replace `touse'=0 if _st==0

	if "`W'"=="" {
		local W = 1
	}

quietly {

	if "`smr'"!="" {
		replace `y' = `smr'*`y' if `touse'
	}
	count if `touse'
	local inc =r(N)
	gen double `wd' = `W'*_d  if `touse'
	gen double `wy' = `W'*`y' if `touse'
	sort `touse' `ev' `cluster'
	tempvar last
	if "`jack'"!="" {
		 if "`cluster'"!="" {
			by `touse' `ev' `cluster': /*
				*/ replace `wd' = sum(`wd') if `touse'
			by `touse' `ev' `cluster': /*
				*/ replace `wy' = sum(`wy') if `touse' 
			by `touse' `ev' `cluster': /*
				*/ gen byte `last'=( _n==_N) if `touse'

		}
		else 	gen byte `last' = `touse'

		count if `last'==1 /* & `touse' implied */
		local cin =r(N) 
			
		if "`ev'"!="" {
			replace `wd'=. if `last'~=1
			replace `wy'=. if `last'~=1
			by `touse' `ev': /*
				*/ gen double `D' = sum(`wd') if `touse'
			by `touse' `ev': /*
				*/ gen double `Y' = sum(`wy') if `touse'
			by `touse' `ev': gen `jn' = sum(`touse') 
			by `touse' `ev': /*
				*/ replace `jn' = sum(`last') if `touse'
			by `touse' `ev': gen double `jm' = /*
				*/ (`D'[_N]-(`wd'))/(`Y'[_N]-(`wy')) /*
				*/  if `touse' 
			by `touse' `ev': replace `jm' =/*
				*/ `jn'[_N]*log(`D'[_N]/`Y'[_N]) /*
				*/ - (`jn'[_N]-1)*log(`jm') /*
				*/  if `touse' 
			gen double `jv' = `jm'^2 if `touse'
			by `touse' `ev': replace `jm' = sum(`jm') /*
				*/ if `touse'
			by `touse' `ev': replace `jv' = sum(`jv') /*
				*/ if `touse'
			by `touse' `ev': replace `last'= ( _n==_N) /*
				*/ if `touse'
		}
		else {
			replace `wd'=. if `last'~=1
			replace `wy'=. if `last'~=1
			gen double `D' = sum(`wd') /* sic */
			gen double `Y' = sum(`wy') /* sic */
			gen `jn' = sum(`last')
			gen double `jm' = /*
				*/ (`D'[_N]-(`wd'))/(`Y'[_N]-(`wy')) /*
				*/ if `touse'
			replace `jm' = `jn'[_N]*log(`D'[_N]/`Y'[_N]) /*
				*/ - (`jn'[_N]-1)*log(`jm') if `touse'
			gen double `jv' = `jm'^2 if `touse'

			replace `jm' = sum(`jm') /* sic */
			replace `jv' = sum(`jv') /* sic */
			replace `last'= ( _n==_N) /* sic */
		}
	}
	else {
		if "`ev'"!="" {
			by `touse' `ev': gen double `D' = sum(`wd') /*
				*/ if `touse'
			by `touse' `ev': gen double `Y' = sum(`wy') /*
				*/ if `touse'
			by `touse' `ev': gen byte `last'= ( _n==_N) /*
				*/ if `touse'
		}
		else {
			gen double `D' = sum(`wd') /* sic */
			gen double `Y' = sum(`wy') /* sic */
			gen byte `last'= ( _n==_N) /* sic */
		}
	} 

	gen double `rate' = `D'/`Y' if `touse'
	if "`jack'"!="" {
		replace `jm' = cond(`touse', `jm'/`jn', .)
		replace `jv' = cond(`touse', /*
		*/ sqrt((`jv' - `jn'*(`jm'^2))/(`jn'*(`jn' - 1))),.)
	}
	else {
		gen double `jm' = log(`D'/`Y') if `touse'
		gen double `jv' = sqrt(1/`D') if `touse'
	}
	local z = invnorm(0.5 + `level'/200)  
	gen double `cll' = cond(`D'==0, ., exp(`jm' - `z'*`jv')) 
	gen double `clh' = cond(`D'==0, ., exp(`jm' + `z'*`jv')) 

} // quielty

	di
	if "`smr'" != "" {
		di in gr "Estimated SMRs and lower/upper bounds" /*
		*/ `" of `=strsubdp("`level'")'% confidence intervals"'
	}
	else {
		di in gr "Estimated rates " _continue 
		if `per'!=1 {
			di in gr "(per `per') " _continue
		}
		di in gr /*
*/ `"and lower/upper bounds of `=strsubdp("`level'")'% confidence intervals"'
	}
	di in gr "(" in ye `inc' in gr " records included in the analysis)"
	if "`jack'"!="" {
		di in gr /*
		*/ "The jackknife was used to calculate confidence intervals"
		if "`cluster'" != "" {
			di in ye `cin' in gr _col(8) "clusters, " /*
			*/  "identified by the variable: " in ye "`cluster'"
		}
	}
	if "`ev'"=="" & "`graph'"!="" {
		di in bl /*
		*/ "Warning: graphical output suppressed - no groups to plot"
		local graph
	}
	if "`graph'"!="" {
		tokenize `ev'
		if "`2'"!="" {
			tempvar g
			qui egen `g'=group(`ev')
			local xttl "Groups by: `ev'"
		}
		else {
			local g "`ev'"
			local xttl "`ev'"
			local listg "noobs"
		}
	}
	else {
		local listg "noobs"
	}

capture noisily {

	rename `D' _D
	char _D[varname] "D"
	rename `cll' _Lower
	rename `clh' _Upper
	format _D %4.0f 
	if "`smr'"!="" {
		rename `Y' _E
		format _E %8.2f
		char _E[varname] "E"
		rename `rate' _SMR
		char _SMR[varname] "SMR"
		SEtfmt _SMR _Lower _Upper, w(8) s(4) l(`last')
		char _Lower[varname] "Lower"
		char _Upper[varname] "Upper"
		if "`list'"!="nolist" {
			list `ev' _D _E _SMR _Lower _Upper /*
			*/ if `last'==1 & `touse', `listg' subvar 
		}
		local yvar _SMR
		local yttl SMR
	}
	else {
		rename `Y' _Y
		SEtfmt _Y, w(8) s(5) l(`last')
		qui gen str13 _NY=string(_Y,"%8.4f")
		qui rename _Y _MY
		rename _NY _Y
		qui compress
		rename `rate' _Rate
		char _Y[varname] "Y"
		SEtfmt _Rate _Lower _Upper, w(8) s(5) l(`last')
		char _Rate[varname] "Rate"
		char _Lower[varname] "Lower"
		char _Upper[varname] "Upper"
		if "`list'"!="nolist" {
			list `ev' _D _Y _Rate _Lower _Upper /*
			*/ if `last'==1 & `touse', `listg' nodisp subvar

		}
		qui drop _Y
		qui rename _MY _Y
		if `per'!=1 {
			local yttl "Rate (per `per')"
		}
		else {
			local yttl "Rate"
		}
		local yvar _Rate
	}

	if `"`graph'"' != "" {
		if `"`whisker'"' == "" {
			label var _Lower `"`=strsubdp("`level'")'% CI"'
			label var _Upper `"`=strsubdp("`level'")'% CI"'
			local cigraph			///
			(rspike _Lower _Upper `g'	///
				if `last'==1,		///
				yvarformat(%9.4g)	///
				pstyle(ci)		///
				`ciopts'		///
			)
		}

		if `"`plot'`addplot'"' == "" {
			local legend legend(nodraw)
		}

		version 8: graph twoway		///
		`cigraph'			///
		(scatter `yvar' `g'		///
			if `last'==1,		///
			`legend'		///
			yvarformat(%9.4g)	///
			ytitle(`"`yttl'"')	///
			xtitle(`"`xttl'"')	///
			pstyle(p1)		///
			`options'		///
		)				///
		|| `plot' || `addplot'		///
		// blank

	}

	di
	if `"`outnam'"' != "" {
		preserve
		qui keep if `last'==1 & `touse'
		label var _D "# Failures"
		label var _Lower /*
		*/ `"Lower `=strsubdp("`level'")'% confidence limit"'
		label var _Upper /*
		*/ `"Upper `=strsubdp("`level'")'% confidence limit"'
		if "`smr'"=="" {
			keep `ev' _D _Y _Rate _Lower _Upper
			label var _Y "Person-time observation"
			label var _Rate "Rate estimate" 
		}
		else {
			keep `ev' _D _E _SMR _Lower _Upper
			label var _E "Expected # failures"
			label var _SMR "SMR estimate" 
		} 
		stset, clear
		qui save `"`outnam'"', `outrepl'
		restore
	}

} // capture noisily

	local rc = _rc

	capture drop _D
	capture drop _E
	capture drop _SMR
	capture drop _Lower
	capture drop _Upper
 	capture drop _Y
	capture drop _Rate	
	capture drop _MY
	capture drop _NY

	exit `rc'
end

* Program to compute output format

program define SEtfmt
	syntax varlist [, Width(int 8) Sigfig(int 3) Last(varname) ]
	tokenize "`varlist'"
	tempvar lv 
	qui gen double `lv' = .
	local after = 0
	local minus = 0
	while "`1'"!="" {
		local v "`1'"
		mac shift
		quietly {
			count if `v'<0 & `last'==1
			local minus = (r(N)>0) | `minus'

			replace `lv' = log10(abs(`v')) if `v'!=0 & `last'==1
			summ `lv' 
			local count = r(N) 
			if `count'>0 {
				local aneed = int(`sigfig' - _result(5))
				if `aneed' > `after' {
					local after "`aneed'"
				}
			}
			local lname = length("`v'")
			if `lname'>`width' {
				local width  "`lname'"
			}
		}
	}
	local amax = `width' - `minus' - 1
	if `after' > `amax' {
		local after = `amax'
	}
	format `varlist' %`width'.`after'f
end

⌨️ 快捷键说明

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