ctst_5.ado

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

ADO
261
字号
*! verson 1.0.2  15sep2004
program define ctst_5 /* varlist, strata(varlist) */
	version 5.0, missing
	zt_is_5
	local varlist "req ex"
	local if "opt"
	local in "opt"
	local options "STrata(string) noTitle"
	parse "`*'"

	if "`strata'"!="" {
		unabbrev `strata'
		local strata "$S_1"
		local stopt "strata(`strata')"
	}
	local by "`varlist'"

	tempfile lister
	tempvar touse g
	zt_smp_5 `touse' "`if'" "`in'" "`varlist'" "`strata'"

	preserve 
	local id : char _dta[st_id]
	local t1 : char _dta[st_t]
	local t0 : char _dta[st_t0]
	local dead : char _dta[st_d]
	local w : char _dta[st_wv]

	if "`dead'"=="" {
		tempvar dead 
		qui gen byte `dead'=1
	}

	quietly { 
		keep if `touse'
		keep `by' `id' `t1' `t0' `dead' `w' `strata'
		if "`w'"=="" {
			local w 1
		}

		sort `by'
		by `by': gen long `g'=1 if _n==1
		replace `g'=sum(`g')
		local ng = `g'[_N]
		save "`lister'"

		local i 2
		while `i'<= `ng' {
			tempvar gm
			gen byte `gm'=`g'==`i'
			local vlist "`vlist' `gm'"
			local i = `i' + 1 
		}
		capture stcox `vlist', `stopt' estimate
		if _rc { 
			if _rc!=2000 & _rc!=2001 { error _rc }
			local dof 0 
			local chi2 0
		}
		else {
			local dof = _result(3)
			local chi2 = _result(6)
		}
		if "`t0'"=="" {
			tempvar t0
			gen byte `t0' = 0 
		}


		tempvar op n d

		local N = _N
		expand 2 
		gen byte `op' = 3/*add*/ in 1/`N'
		replace `t1' = `t0' in 1/`N'
		drop `t0'
		local N = `N' + 1
		replace `op' = cond(`dead'==0,2/*cens*/,1/*death*/) in `N'/l

		if "`strata'"!="" {
			local bystr "by `strata':"
		}

		sort `strata' `t1' `op' `by'

		`bystr' gen double `n' = sum(cond(`op'==3,`w',-`w'))
		by `strata' `t1': gen `d' = sum(`w'*(`op'==1))

		local i 1
		while `i' <= `ng' { 
			tempvar ni di
			`bystr' gen double `ni' = /*
			*/ sum(cond(`g'==`i', cond(`op'==3,`w',-`w'), 0))
			by `strata' `t1': gen double `di' = /* 
			*/ sum(cond(`g'==`i', `w'*(`op'==1), 0))
			local nlist "`nlist' `ni'"
			local dlist "`dlist' `di'"
			local i = `i' + 1 
		}
		by `strata' `t1': keep if _n==_N
		tempvar newn
		`bystr' gen double `newn' = `n'[_n-1]
		drop `n' 
		rename `newn' `n'

		local i 1
		while `i' <= `ng' {
			local ni : word `i' of `nlist'
			`bystr' gen double `newn' = `ni'[_n-1] if _n>1
			drop `ni' 
			rename `newn' `ni'
			local i = `i' + 1
		}
		drop if `d'==0

		tempname u w w0
		mat `u' = J(1,`ng',0)
		mat `w' = J(1,`ng',0)
		mat `w0' = J(1,`ng',0)
		tempvar wi
		local i 1
		while `i' <= `ng' {
			local ni : word `i' of `nlist'
			local di : word `i' of `dlist'
			if `i'!=1 { 
				local bi : word `i' of 1 `vlist'
				mat `u'[1,`i'] = _b[`bi']
			}
			else	mat `u'[1,`i'] = 0
			gen double `wi' = sum((`ni'*`d')/`n')
			mat `w'[1,`i'] = `wi'[_N]
			drop `wi'
			summ `di', meanonly
			mat `w0'[1,`i'] = _result(18)
			local i = `i'+1
		}
		tempname mean ttl
		mat `mean' = `u' * `w' '
		mat `ttl' = J(`ng',1,1)
		mat `ttl' = `w' * `ttl'
		scalar `mean' = `mean'[1,1]/`ttl'[1,1]
		local i 1
		while `i' <= `ng' { 
			mat `u'[1,`i'] = exp(`u'[1,`i'] - `mean')
			local i = `i' + 1
		}
	}

	quietly { 
		use "`lister'", clear 
		by `by': keep if _n==1
		keep `g' `by'
		sort `g'
		tempvar grp X
		gen str50 `grp' = "" 
		local second 0
		parse "`by'", parse(" ")
		while "`1'" != "" {
			if `second' { 
				local ttl "`ttl', `1'"
				replace `grp' = `grp' + ", "
			}
			else {
				local ttl "`1'"
				local second 1
			}
			local ty : type `1'
			if substr("`ty'",1,3)=="str" { 
				replace `grp' = `grp' + trim(`1')
			}
			else {
				local vlab : value label `1'
				if "`vlab'" != "" { 
					decode `1', gen(`X')
					replace `grp' = `grp' + trim(`X')
					drop `X'
				}
				else	replace `grp' = `grp'+trim(string(`1'))
			}
			mac shift
		}
		compress `grp'
	}
	local len1 = length("`ttl'")
	local ty : type `grp'
	local len2 = substr("`ty'",4,.)
	local len = max(`len1', `len2', 5) + 1

	Title "`title'" "`strata'"

        di in gr _n _col(`len') " |  Events" _skip(23) "Relative"
	local pad = `len' - `len1'
	if "`strata'"=="" { 
		local dup "   expected" 
		local ranks " hazard"
	}
	else {
		local dup "expected(*)"
		local ranks "hazard(*)"
	}
	di in gr "`ttl'" _skip(`pad') "|  observed    `dup'      `ranks'"
	di in gr _dup(`len') "-" "+" _dup(38) "-"

	local wt : char _dta[st_wt]
	if "`wt'"=="pweight" {
		local fmt "%10.2f"
	}
	else	local fmt "%10.0g"

	local sum 0
	local i 1 
	while `i' <= _N { 
		local x = `grp'[`i']
		local pad = `len' - length("`x'")
		di in gr "`x'" _skip(`pad') "|" in ye /* 
			*/ `fmt' `w0'[1,`i'] "     " %10.2f `w'[1,`i'] /*
			*/ "   " %10.4f `u'[1,`i']
		local sum = `sum' + `w0'[1,`i']
		local i = `i' + 1
	}
	di in gr _dup(`len') "-" "+" _dup(38) "-"
        local pad = `len' - 5
	di in gr "Total" _skip(`pad') "|" in ye /* 
			*/ `fmt' `sum' "     " %10.2f `sum' /* 
			*/ "   " %10.4f 1

	if "`strata'" != "" {
		di in gr _n "(*) sum over calculations within `strata'"	
	}

	local pad = `len' + 7
	global S_1 "`by'"
	global S_5 `dof'
	global S_6 `chi2'
	local pad1 = max(`pad' - ($S_5>=10) - 5, 1)
	if "$S_E_vce"=="Robust" {
		local chttl "Wald chi2"
	}
	else	local chttl "  LR chi2"

	di _n in gr _col(`pad1') "`chttl'($S_5) = " in ye %10.2f `chi2'
	di in gr _col(`pad') "Pr>chi2 = " in ye %10.4f chiprob(`dof',`chi2')
end

program define Title /* <title mark> <strata> */
	local title "`1'"
	local strata "`2'"

	if "`title'" == "" {
		if "`strata'"=="" {
			di _n(2) in gr /*
*/ "Cox regression-based test for equality of survival curves" _n _dup(57) "-"
		}
		else	di _n(2) in gr /*
*/ "Stratified Cox regression-based test for equality of survival curves" _n _dup(68) "-"
	}
end
exit
		
	

⌨️ 快捷键说明

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