Dear Statalist:
Is there any possibility to derive adjusted confidence intervals that are comparable to FDR (Benjamini Hochberg false-discovery-rate)-adjusted p-values in Stata? I used Newson's qvalue.ado to calculate qvalues but I cannot figure out how to get equivalent CIs. I found R (https://bmcbioinformatics.biomedcent...71-2105-12-288) code but I would like to in Stata.
Specially,
I run multiple Cox models for different exposures and effect-modifiers and get HRs for combinations of exposures and modifiers. In addition to providing qvalues for the interaction term i would like to get FDR-compareable CIs from lincom.
foreach exp of varlist x1 x2 {
foreach mod of varlist m1 m2 {
quiet stset age_dx_cens, f(ovaryca==1) origin(time ENTRY_AGE)
quiet stcox c.`exp'##i.`mod' $m3, strata(age_5) nolog
parmest, saving("$ovarian_int\`exp'_`mod'", replace)
di "***************HR by levels of modifier***"
levelsof `mod', local(levels)
foreach l of local levels {
lincom c.`exp' + c.`exp'#`l'.`mod', eform level(95)
}
}
Any suggestions? Thanks in advance Sebastian
Related Posts with FDR analogous confidence intervals
Problem with rename in a loopHello I am trying to rename some variables within a loop, but it returns me error. I have some varia…
optimize_init_technique(S, "nr")Hi, I have a methodological question about how optimize works with the Newton-Raphson algorithm. A…
ERM model for Endogenous treatment effect with nointeract optionI am trying estimate treatment effect models using ERM command in Stata 15. However, it has been sho…
generating change variables in panel-structureDear all, I would like check whether I can overwrite the missing deprivation variable (dep) with the…
Ali UbaidI am trying Heckman two-step analysis for remittances and agriculture investment based on survey dat…
Subscribe to:
Post Comments (Atom)
0 Response to FDR analogous confidence intervals
Post a Comment