📄 gomper_p.ado
字号:
*! version 6.1.0 27aug2004
program define gomper_p, sort
version 7, missing
syntax [anything] [if] [in] [, SCores * ]
if `"`scores'"' != "" {
confirm variable `e(dead)'
global EREGd `e(dead)'
confirm variable `e(depvar)'
global EREGt `e(depvar)'
confirm variable `e(t0)'
global EREGt0 `e(t0)'
global EREGa 0
ml_score `0'
macro drop EREG*
exit
}
/* Step 1:
place command-unique options in local myopts
Note that standard options are
LR:
Index XB Cooksd Hat
REsiduals RSTAndard RSTUdent
STDF STDP STDR noOFFset
SE:
Index XB STDP noOFFset
*/
local myopts /*
*/ "XB Index STDP Time LNTime HAzard HR Surv DEViance CSnell MGale CSUrv CCSnell CMgale OOS MEDian MEAN"
/* Step 2:
call _propts, exit if done,
else collect what was returned.
*/
_pred_se "`myopts'" `0'
if `s(done)' { exit }
local vtyp `s(typ)'
local varn `s(varn)'
local 0 `"`s(rest)'"'
/* Step 3:
Parse your syntax.
*/
syntax [if] [in] [, `myopts' noOFFset]
if "`mean'"~="" {
noi di as err "mean times currently not available"
exit 198
}
/* Step 4:
Concatenate switch options together
*/
if "`time'"~="" & "`lntime'"~="" {
di as err /*
*/ "options time and lntime may not be specified together"
exit 198
}
local type /*
*/ "`xb'`index'`stdp'`time'`lntime'`hazard'`hr'`surv'`deviance'`csnell'`mgale'`csurv'`ccsnell'`cmgale'"
local type2 "`type'`median'"
if _caller() < 7 {
if "`type'"=="" {
local type="hazard"
local median
di as txt "(option hazard assumed; predicted hazard)"
}
}
else {
local flag 0
if "`type'"=="" { local flag 1 }
if "`type2'"=="median" { local flag 2 }
else if "`type2'"=="time" { local flag 4 }
else if "`type2'"=="lntime" { local flag 5 }
if `flag'==1 | `flag'==2 | `flag'==4 {
local type="time"
local median="median"
di as txt /*
*/ "(option median time assumed; predicted median time)"
}
else if `flag'==5 {
local type="lntime"
local median="median"
di as txt /*
*/ "(option median log time assumed; predicted median log time)"
}
}
/* Step 5:
quickly process default case if you can
Do not forget -nooffset- option.
*/
/* Step 6:
mark sample (this is not e(sample)).
*/
marksample touse
if "`e(cmd2)'"=="streg" {
st_is 2 full
local is_st yes
local id `_dta[st_id]'
local t `_dta[st_t]'
local t0 `_dta[st_t0]'
local d `_dta[st_d]'
qui replace `touse'=0 if _st==0
}
else {
local t `e(depvar)'
local t0 `e(t0)'
local d `e(dead)'
}
tempvar gamma
qui _predict double `gamma' if `touse', xb eq(#2)
if "`type'"=="time" & "`median'"=="median" {
tempvar xb
qui _predict double `xb' if `touse', xb `offset'
gen `vtyp' `varn'=(1/`gamma')* /*
*/ (ln(exp(`xb') + ln(2)*`gamma') - `xb') if `touse'
label var `varn' "predicted median `e(depvar)'"
exit
}
if "`type'"=="xb" | "`type'"=="index" | "`type'"=="stdp" {
_predict `vtyp' `varn' if `touse', `type' `offset' eq(#1)
exit
}
if "`type'"=="lntime" & "`median'"=="median" {
tempvar elnt
qui predict double `elnt' if `touse', time median `offset'
gen `vtyp' `varn'= ln(`elnt') if `touse'
label var `varn' "predicted median log `e(depvar)'"
exit
}
if "`type'"=="xb" | "`type'"=="index" | "`type'"=="stdp" {
_predict `vtyp' `varn' if `touse', `type' `offset' eq(#1)
exit
}
if "`type'"=="" | "`type'"=="hazard" {
if "`type'"=="" {
di as txt "(option hazard assumed; predicted hazard)"
}
tempvar xb
qui _predict double `xb' if `touse', xb `offset' eq(#1)
gen `vtyp' `varn'=exp(`xb')*exp(`gamma'*`t') if `touse'
label var `varn' "predicted hazard"
exit
}
if "`type'"=="hr" {
tempvar xb
qui _predict double `xb' if `touse', xb `offset' eq(#1)
gen `vtyp' `varn'=exp(`xb'-_b[_cons]) if `touse'
label var `varn' "hazard ratio"
exit
}
if "`type'" =="surv" {
tempvar xb
qui _predict double `xb' if `touse', xb `offset' eq(#1)
gen `vtyp' `varn' = /*
*/ exp( (-exp(`xb')/`gamma')*(exp( `gamma'*`t') /*
*/ - exp( `gamma'*`t0'))) if `touse'
if "`t0'"=="0" {
label var `varn' "S(`t')"
}
else label var `varn' "S(`t'|`t0')"
exit
}
if "`type'"=="csnell" {
tempvar mg
qui predict double `mg' if `touse', mgale `offset'
gen `vtyp' `varn' = (`d'!=0) - `mg' if `touse'
if "`id'"!="" { local part "partial " }
label var `varn' "`part'Cox-Snell residual"
exit
}
if "`type'"=="mgale" {
tempvar s
qui predict double `s' ,surv
gen `vtyp' `varn' = (`d'!=0) + ln(`s') if `touse'
if "`id'"!="" { local part "partial " }
label var `varn' "`part'Martingale-like resid."
exit
}
/* Step 7:
handle options that take argument one at a time.
Comment if restricted to e(sample).
Be careful in coding that number of missing values
created is shown.
Do all intermediate calculations in double.
*/
/* Step 8:
handle switch options that can be used in-sample or
out-of-sample one at a time.
Be careful in coding that number of missing values
created is shown.
Do all intermediate calculations in double.
*/
if "`is_st'"=="yes" {
if "`type'"=="deviance" {
tempvar cmg
qui predict double `cmg' if `touse', cmgale `offset' /*
*/ `oss'
gen `vtyp' `varn' = sign(`cmg')*sqrt( /*
*/ -2*(`cmg' + (`d'!=0)*(ln((`d'!=0)-`cmg')))) /*
*/ if `touse'
label var `varn' "deviance residual"
exit
}
if "`oos'"=="" {
tempvar es
qui gen byte `es' = e(sample)
}
else local es "`touse'"
if "`type'"=="csurv" {
if "`_dta[st_id]'" == "" {
predict `vtyp' `varn' if `touse' & `es', /*
*/ surv `offset'
exit
}
tempvar surv
qui predict double `surv' if `es', surv `offset'
sort `es' `_dta[st_id]' `t'
qui by `es' `_dta[st_id]': replace /*
*/ `surv'=`surv'*`surv'[_n-1] if _n>1 & `es'
gen `vtyp' `varn' = `surv' if `touse'
label var `varn' "S(`t'|earliest `t0' for subj.)"
exit
}
if "`type'"=="ccsnell" {
if "`_dta[st_id]'" == "" {
predict `vtyp' `varn' if `touse' & `es', /*
*/ csnell `offset'
exit
}
tempvar cs
qui predict double `cs' if `es', cs `offset'
sort `es' `_dta[st_id]' `t'
qui by `es' `_dta[st_id]': replace /*
*/ `cs'=cond(_n==_N,sum(`cs'),.) if `es'
gen `vtyp' `varn' = `cs' if `touse'
label var `varn' "cum. Cox-Snell residual"
exit
}
if "`type'"=="cmgale" {
if "`_dta[st_id]'" == "" {
predict `vtyp' `varn' if `touse' & `es', /*
*/ mgale `offset'
exit
}
tempvar mg
qui predict double `mg' if `es', mg `offset'
sort `es' `_dta[st_id]' `t'
qui by `es' `_dta[st_id]': replace /*
*/ `mg'=cond(_n==_N,sum(`mg'),.) if `es'
gen `vtyp' `varn' = `mg' if `touse'
label var `varn' "cum. Martingale-like resid."
exit
}
}
/* Step 9:
handle switch options that can be used in-sample only.
Same comments as for step 8.
*/
* qui replace `touse'=0 if !e(sample)
/* Step 10.
Issue r(198), syntax error.
The user specified more than one option
*/
error 198
end
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -