First Aid Kit for Survival. Hypoxia cohort. Goal. DFS=Clinical + Marker 1/21/2015. Two analyses to exemplify some concepts of survival techniques

Size: px
Start display at page:

Download "First Aid Kit for Survival. Hypoxia cohort. Goal. DFS=Clinical + Marker 1/21/2015. Two analyses to exemplify some concepts of survival techniques"

Transcription

1 First Aid Kit for Survival Melania Pintilie Two analyses to exemplify some concepts of survival techniques Checking linearity Checking proportionality of hazards Predicted curves: Pros and Cons Competing risks Creating riskscores Sample size 1 23 Jan 214 CHL527 - Lab 2 Hypoxia cohort Patients diagnosed with early stage cervical cancer , n=27 Treatment was RT 1994-Jan 1999 (n=11) and RT+Chemotherapy(Cisplatin) Feb (n=169, 13 did not get Cis) Two markers: Hypoxia, HP5 Interstitial Fluid Pressure, IFP Goal To study the influence of HP5 and IFP on outcome, DFS. DFS is the interval between diagnosis and relapse or death. 113 relapses 12 deaths without relapse Is the effect independent of other clinical factors DFS=Clinical + Marker 3 4 1

2 Notes There is no randomization The RT cohort has longer follow-up Not all after Feb 1999 received Cis(13 did not). The effect of HP5 and IFP could be different in the two cohorts Plan of analysis Import and clean the data Summary statistics Martingale residuals for the continuous variables (DFS) Univariate analysis (DFS: each covariate) Test the interaction with treatment cohort Clinical model Test HP5 and IFP in the clinical model 5 6 Age Median Range Tumour size Median Range Nodal status Negative Equivocal Positive Stage IB/IIA IIB/IIIA IIIB Histology Squamous Other Missing Cohort s description (N=27) Summary HP5 Median Range IFP Median Range Treatment given RT RT+Cis Death with relapse without relapse Summary Second malignancy 128 Follow-up (alive) Median Range N <2 years Linearity Martingale residuals: Observed-Expected for the null model Calculated for each observation Plot of martingale residuals vs. a covariate shows the functional form = = 8 2

3 Linearity Martingale residuals lindfs=function(v,n) { x=oxy[,names(oxy)==v] id=!is.na(x) fit=coxph(surv(dftime,dfcens)~1,data=oxy[id,]) plot(x[id],resid(fit),xlab=n,ylab='o-e DFS') lines(lowess(x[id],resid(fit),iter=),lwd=3) id1=(oxy$cohort=='rt')&id fit=coxph(surv(dftime,dfcens)~1,data=oxy,subset=id1) points(x[id1],resid(fit),pch=16,col='red') lines(lowess(x[id1],resid(fit),iter=),col='red') id1=(oxy$cohort=='ch')&id fit=coxph(surv(dftime,dfcens)~1,data=oxy,subset=id1) points(x[id1],resid(fit),pch=16,col='green') lines(lowess(x[id1],resid(fit),iter=),col='green') legend(min(x),1.3,lty=1,bty='n',col=c('black','red','green'),ncol=3, c('overall','rt','ch')) } par(mfrow=c(2,2),las=1,xpd=t) For overall For RT cohort For Ch cohort To get the legend outside the plotting area 9 Checking linearity - SAS proc phreg data=oxy; model dftime*dfcens()=; output out=outp xbeta=xb resmart=mart resd=d; run; odshtml path= the_directory_where_you_want_the_graph_to_be'; procsgplotdata=outp; loess x = ifpy = Mart / clm interpolation=cubic smooth=.7; run; ods_all_ close; Controls the smoothing For similarity with R 23 Jan 214 CHL527 - Lab 1.5 Overall RT Ch.5 Overall RT Ch Linearity in the context of categorical covariates like nodes and stage O-E DFS O-E DFS Age Overall Ch RT O-E DFS O-E DFS Tumour size RT Overall Ch Three lels covariates Could be coded in 2 ways a) =node neg, 1=node equivocal, 2 node positive b) 2 dummy variables: 1 for node equivocal and for the rest 1 for node positive and for the rest Avantages/Disadvantages making assumption/df used HP5 IFP

4 Univariate analysis d=data.frame() Example of code Age Size <.1 Nodes Equiv vs. Neg. Pos. vs. Neg Nodes (Pos vs. E+N) E-6 Stage IIB/IIIA vs. IB/IIA IIIB vs. IB/IIA <.1 Cis HP IFP fit=coxph(surv(dftime,dfcens)~age,data=oxy) sfit=summary(fit) hr=round(sfit$coef[,2],2) pv=signif(sfit$coef[,5],2) lci=round(sfit$conf.int[,3],2) uci=round(sfit$conf.int[,4],2) d=data.frame(n=fit$n,hr,ci=paste(lci,uci,sep='-'),pv) row.names(d)='age' fit=coxph(surv(dftime,dfcens)~tumsize,data=oxy) sfit=summary(fit) hr=round(sfit$coef[,2],2) pv=signif(sfit$coef[,5],2) lci=round(sfit$conf.int[,3],2) uci=round(sfit$conf.int[,4],2) dtemp=data.frame(n=fit$n,hr,ci=paste(lci,uci,sep='-'),pv) row.names(dtemp)='size' d=rbind(d,dtemp) 14 Interactions The only significant interactions was between IFP and treatment (p=.24). Clinical models Cis Size Nodes (Pos vs. E+N) Cis Size Stage IIB/IIIA vs. IB/IIA IIIB vs. IB/IIA Strong correlation between Stage with tumour size and nodal status (p<.1) 15 Cis Nodes (Pos vs. E+N) Stage IIB/IIIA vs. IB/IIA IIIB vs. IB/IIA

5 The effect of markers A better looking effect for HP5 coxph(surv(dftime,dfcens)~cohort+tumsize+nodecat+hp5,data=oxy) Cis Size Nodes (Pos vs. E+N) HP Cis Size Nodes (Pos vs. E+N) HP Cis Size Nodes (Pos vs. E+N) IFP IFP x Cis coxph(surv(dftime,dfcens)~cohort+tumsize+nodecat+i(hp5/1),data=oxy) Cis Size Nodes (Pos vs. E+N) HP Percent vs. Proportion a different unit 18 Reporting IFP s effect Cis Size Nodes (Pos vs. E+N) IFP IFP x Cis Size Nodes (Pos vs. E+N) IFP Size Nodes (Pos vs. E+N) IFP RT cohort RT+Cis cohort Cox proportional hazards modelling ( ) = ( ) exp( β ) h t x h t x 23 Jan 214 CHL527 - Lab 19 2 r exp( β x j ) PL( β ) = j= 1 exp( β xi ) i R j R j = risk set at time t j 5

6 Proportionality of hazards Schoenfeldresiduals are calculated for each covariate at each time point at which an ent was observed Derivative of the log partial likelihood calculated for the estimated coefficient = R k = risk set at time t k Cox proportional hazards modelling Semi-parametric ( ) = ( ) exp( β ) h t x h t x stage = 1or 2 Hazard ratio exp ( = 1) = ( ) exp( ) h t stage h t β ( = 2) = ( ) exp( 2 ) h t stage h t β ( β ) h( t / stage = 2) = h( t / stage = 1) ( h t stage ) ( h t stage ) β = log ( / = 2) log ( / = 1) β (HR) does not depend on time = proportional hazards 23 Jan 214 CHL527 - Lab Hazard rate, log scale Hazard rate, log scale, log scale Hazard rate, log scale Hazard rate, log scale The difference is the coefficient β, log scale Coefficient Coefficient Coefficient Coefficient 23 Jan 214 CHL527 - Lab 23 24, log scale, log scale 6

7 Cox proportional hazards modelling x = continuous ( age) h t x h t β exp ( = 47) = ( ) exp( 47) ( = 46) = ( ) exp( 46) h t x h t β ( β ) h( t / x = 47) h( t / x = a + 1) = = h( t / x = 46) h( t / x = a) HR = fold increase of the hazard for 1 unit increase of x =>log hazard and x are linear =>linearity (log scale) (log scale) 23 Jan 214 CHL527 - Lab Hazard rate, log scale Hazard rate, log scale Age=49 Age=48 Age=47 Age=46 Age=45 b b b b Beta(t) for cohortrt Beta(t) for nodecatpos Proportionality assumption Jan CHL527 -Lab Beta(t) for hp5 Beta(t) for tumsize Proportionality of hazards assumption fit=coxph(surv(dftime,dfcens)~cohort+tumsize+nodecat+hp5,data=oxy) zfit=cox.zph(fit) par(mfrow=c(2,2),xpd=f) plot(zfit[1]) abline(h=fit$coef[1]) plot(zfit[2]) abline(h=fit$coef[2]) plot(zfit[3]) abline(h=fit$coef[3]) plot(zfit[4]) abline(h=fit$coef[4]) 28 7

8 dependent coefficient h =h = = = < 1 Tumour size 23 Jan 214 CHL527 - Lab 29 3 Beta(t) for tumsize Reporting IFP s effect Cis Size Nodes (Pos vs. E+N) IFP IFP x Cis Size Nodes (Pos vs. E+N) IFP Size Nodes (Pos vs. E+N) IFP RT cohort RT+Cis cohort 31 Breslow type estimator Prediction H = = = The difference between the predicted probabilities for the different cases come from βx term. 32 8

9 Prediction - code fit=coxph(surv(dftime,dfcens)~tumsize+nodecat+ifp, data=oxy,subset=(cohort=='rt')) d=data.frame(tumsize=5,nodecat='neg',ifp=c(1,3)) pred=survfit(fit,new=d) par(las=1,mfrow=c(1,2),lwd=5,bg=na,cex=3) plot(pred,mark.time=f,lty=c(1,2),lwd=5,xaxs='r', xlab=' to first failure',ylab='predicted DFS', main='rt cohort\nsize=5, nodes negative') legend('bottomleft',lty=c(1,2),bty='n', legend=c('ifp=1mmhg','ifp=2mmhg')) Discussion of predicted curves Are nice illustrations of the effect The effect is controlled for the other covariates in the model The curves always look nicer than they really are: The number of steps in each group corresponds to the number of ents for the whole cohort The curves follow the PH assumption Tam +/-RT competing risks 769 Breast cancer patients randomized to Tam vs. Tam+RT What can be said to a patient who is taking these treatments about her risks in 1 years? Relapse This could be Cancer in the contralateral breast deleted so that only 2 Second malignancy examples Death of other causes are presented Alive and well Using competing risks these could be calculated

10 Follicular lymphoma dataset Follicular lymphoma is a type of cancer with relative good outcome for early stage disease (7% survival at 1 years). Three grades (1,2,3) with 3 being the one with the poorest outcome This cohort contains patients diagnosed between who received RT or RT+Chemo(CMT). 37 Age Median Range Sex Women Men Description (N=78) Summary Extranodal disease 17 Bulk > >5 Stage I II Grade Treatment given RT CMT Summary Relapse 357 Death with relapse without relapse Second malignancy 128 Follow-up (alive) Median Range N <5 years Goal Are there patients who need more aggressive treatment among those with RT? Can we identify a group of patients among those treated with RT who have poor outcome? Can we identify the covariates which predict for poor outcome? How we define the outcome? Decided in collaboration with the PI 39 Goal Outcome: relapse or death 357 relapses 155 death without relapses The death without relapse might give misleading results. Outcome: relapse from diagnosis to relapse Censor: 1= relapse, 2 =death, =alive and well To find covariates which are significant for time to relapse in the RT cohort 4 1

11 Import the data Clean the data Plan Summary of ALL variables Only 6 covariates: Age, Sex, Extranodal disease, Bulk, Grade and Stage. The model will be performed in the RT cohort only Find the best model. 41 Results Coeff. HR 95% CI p-value Stage: II vs I Bulk: vs. <= Bulk: >5 vs. <= Grade: 2/3 vs ( t x) = ( t) exp( x) γ γ β β = > (2,3) 42 Prediction γ ( t x) = γ ( t) exp( β x) = ( Γ ) = ( Γ ( ) ( β )) ( ) ( ) S t x exp t x exp t exp x Γ=cumulative hazard of subdistribution The jumps in Γ are in $bfitj of the crr object Γ = The difference between the predicted probabilities for the different cases come from βx term. 43 Coeff. Stage: II vs I.352 Bulk: vs. <= Bulk: >5 vs. <= Grade: 2/3 vs Stage Bulk Grade βx n N ents I < I <2.5 2/ I I / I > I >5 2/ II < II <2.5 2/ II II / II > II >5 2/

12 Stage Bulk Grade βx N N ents I < I <2.5 2/ I I / I > I >5 2/ II < II <2.5 2/ II II / II > II >5 2/ Group βx N N ents No adv factors One adv factor Probability of relapse No adv. factor n= 118,Relapse at 1y= 42.2 % One adv. Factor n= 211,Relapse at 1y= 46.8 % 2 or more adv. factors n= 197,Relapse at 1y= 61.4 % Gray's p-value= to relapse 2 or more advfactors The most one adv. factor CMT n= 68,Relapse at 1y= 34.5 % RT n= 329,Relapse at 1y= 45.2 % Gray's p-value= Two or more adv. factors CMT n= 114,Relapse at 1y= 39.7 % RT n= 197,Relapse at 1y= 61.4 % Gray's p-value=.63 Do we need to validate this result? Why? How? Probability of relapse Probability of relapse The model is data driven. For a different cohort it might not work. The cohorts of RT/CMT were not randomized Validation Validate the model found in the RT cohort a different cohort of RT Validate that the CMT treatment is necessary in the second risk set- randomized study 23 Jan 214 to relapse CHL527 -Lab to relapse

13 Sample size calculation α, Type I error = probability to find a significance when none exists β, Type II error = probability of not finding an existing difference power=1-β, probability to detect a specific effect Sample size calculation (no CR) HR = hazard ratio to be detected ( z + z ) 1 α / 2 1 β σ = standard diation n = of the covariate σ ln( HR) z 1-α/2 = quantile of the λ f λ ( f + a) standard normal e e P = 1 a = accrual time λ a f = follow-up time n N = λ = the hazard rate P for the overall Assumption: Exponential distribution Jan 214 CHL527 - Lab 5 n Sample size calculation (CR) ( z + z ) 1 α / 2 1 β = σ ln( HR) λ λcr λ λcr λ e e P = 1 λ + λ ( λ λ ) a cr + cr λ λ n e e N = P = 1 P λ a ( + ) f ( + ) ( f + a) f ( f + a) Assumption: Exponential distribution, independence 23 Jan 214 CHL527 - Lab 51 Sample size calculation α=.5, β=.2, power=.8 HR=1.8 (observed earlier), σ=.5 (equal allocation). Number of ents=93 ents ~2 years accrual (~17 ents over 4 years in the high risk group) This is not feasible This is not a conservative approach!! HR is what was observed Not all patients will agree to participate 52 13

14 Conclusion References Know your data Kalbfleisch and Prentice, Wiley Clean /check Summary statistics Cross tabulations and summary statistics in subgroups Make sure you know the question Therneau and Grambusch, Springer Collett, Chapman and Hall Lawless, Wiley Pintilie, Wiley Make a plan, sometimes in collaboration with the PI Thank you

Extensions of Cox Model for Non-Proportional Hazards Purpose

Extensions of Cox Model for Non-Proportional Hazards Purpose PhUSE Annual Conference 2013 Paper SP07 Extensions of Cox Model for Non-Proportional Hazards Purpose Author: Jadwiga Borucka PAREXEL, Warsaw, Poland Brussels 13 th - 16 th October 2013 Presentation Plan

More information

MAS3301 / MAS8311 Biostatistics Part II: Survival

MAS3301 / MAS8311 Biostatistics Part II: Survival MAS3301 / MAS8311 Biostatistics Part II: Survival M. Farrow School of Mathematics and Statistics Newcastle University Semester 2, 2009-10 1 13 The Cox proportional hazards model 13.1 Introduction In the

More information

Extensions of Cox Model for Non-Proportional Hazards Purpose

Extensions of Cox Model for Non-Proportional Hazards Purpose PhUSE 2013 Paper SP07 Extensions of Cox Model for Non-Proportional Hazards Purpose Jadwiga Borucka, PAREXEL, Warsaw, Poland ABSTRACT Cox proportional hazard model is one of the most common methods used

More information

A new strategy for meta-analysis of continuous covariates in observational studies with IPD. Willi Sauerbrei & Patrick Royston

A new strategy for meta-analysis of continuous covariates in observational studies with IPD. Willi Sauerbrei & Patrick Royston A new strategy for meta-analysis of continuous covariates in observational studies with IPD Willi Sauerbrei & Patrick Royston Overview Motivation Continuous variables functional form Fractional polynomials

More information

Part IV Extensions: Competing Risks Endpoints and Non-Parametric AUC(t) Estimation

Part IV Extensions: Competing Risks Endpoints and Non-Parametric AUC(t) Estimation Part IV Extensions: Competing Risks Endpoints and Non-Parametric AUC(t) Estimation Patrick J. Heagerty PhD Department of Biostatistics University of Washington 166 ISCB 2010 Session Four Outline Examples

More information

Analysis of Time-to-Event Data: Chapter 6 - Regression diagnostics

Analysis of Time-to-Event Data: Chapter 6 - Regression diagnostics Analysis of Time-to-Event Data: Chapter 6 - Regression diagnostics Steffen Unkel Department of Medical Statistics University Medical Center Göttingen, Germany Winter term 2018/19 1/25 Residuals for the

More information

Multi-state Models: An Overview

Multi-state Models: An Overview Multi-state Models: An Overview Andrew Titman Lancaster University 14 April 2016 Overview Introduction to multi-state modelling Examples of applications Continuously observed processes Intermittently observed

More information

REGRESSION ANALYSIS FOR TIME-TO-EVENT DATA THE PROPORTIONAL HAZARDS (COX) MODEL ST520

REGRESSION ANALYSIS FOR TIME-TO-EVENT DATA THE PROPORTIONAL HAZARDS (COX) MODEL ST520 REGRESSION ANALYSIS FOR TIME-TO-EVENT DATA THE PROPORTIONAL HAZARDS (COX) MODEL ST520 Department of Statistics North Carolina State University Presented by: Butch Tsiatis, Department of Statistics, NCSU

More information

Survival Analysis. 732G34 Statistisk analys av komplexa data. Krzysztof Bartoszek

Survival Analysis. 732G34 Statistisk analys av komplexa data. Krzysztof Bartoszek Survival Analysis 732G34 Statistisk analys av komplexa data Krzysztof Bartoszek (krzysztof.bartoszek@liu.se) 10, 11 I 2018 Department of Computer and Information Science Linköping University Survival analysis

More information

TMA 4275 Lifetime Analysis June 2004 Solution

TMA 4275 Lifetime Analysis June 2004 Solution TMA 4275 Lifetime Analysis June 2004 Solution Problem 1 a) Observation of the outcome is censored, if the time of the outcome is not known exactly and only the last time when it was observed being intact,

More information

Typical Survival Data Arising From a Clinical Trial. Censoring. The Survivor Function. Mathematical Definitions Introduction

Typical Survival Data Arising From a Clinical Trial. Censoring. The Survivor Function. Mathematical Definitions Introduction Outline CHL 5225H Advanced Statistical Methods for Clinical Trials: Survival Analysis Prof. Kevin E. Thorpe Defining Survival Data Mathematical Definitions Non-parametric Estimates of Survival Comparing

More information

β j = coefficient of x j in the model; β = ( β1, β2,

β j = coefficient of x j in the model; β = ( β1, β2, Regression Modeling of Survival Time Data Why regression models? Groups similar except for the treatment under study use the nonparametric methods discussed earlier. Groups differ in variables (covariates)

More information

Description Syntax for predict Menu for predict Options for predict Remarks and examples Methods and formulas References Also see

Description Syntax for predict Menu for predict Options for predict Remarks and examples Methods and formulas References Also see Title stata.com stcrreg postestimation Postestimation tools for stcrreg Description Syntax for predict Menu for predict Options for predict Remarks and examples Methods and formulas References Also see

More information

Lecture 7 Time-dependent Covariates in Cox Regression

Lecture 7 Time-dependent Covariates in Cox Regression Lecture 7 Time-dependent Covariates in Cox Regression So far, we ve been considering the following Cox PH model: λ(t Z) = λ 0 (t) exp(β Z) = λ 0 (t) exp( β j Z j ) where β j is the parameter for the the

More information

Survival Distributions, Hazard Functions, Cumulative Hazards

Survival Distributions, Hazard Functions, Cumulative Hazards BIO 244: Unit 1 Survival Distributions, Hazard Functions, Cumulative Hazards 1.1 Definitions: The goals of this unit are to introduce notation, discuss ways of probabilistically describing the distribution

More information

Lecture 7. Proportional Hazards Model - Handling Ties and Survival Estimation Statistics Survival Analysis. Presented February 4, 2016

Lecture 7. Proportional Hazards Model - Handling Ties and Survival Estimation Statistics Survival Analysis. Presented February 4, 2016 Proportional Hazards Model - Handling Ties and Survival Estimation Statistics 255 - Survival Analysis Presented February 4, 2016 likelihood - Discrete Dan Gillen Department of Statistics University of

More information

Checking model assumptions with regression diagnostics

Checking model assumptions with regression diagnostics @graemeleehickey www.glhickey.com graeme.hickey@liverpool.ac.uk Checking model assumptions with regression diagnostics Graeme L. Hickey University of Liverpool Conflicts of interest None Assistant Editor

More information

Package crrsc. R topics documented: February 19, 2015

Package crrsc. R topics documented: February 19, 2015 Package crrsc February 19, 2015 Title Competing risks regression for Stratified and Clustered data Version 1.1 Author Bingqing Zhou and Aurelien Latouche Extension of cmprsk to Stratified and Clustered

More information

Continuous Time Survival in Latent Variable Models

Continuous Time Survival in Latent Variable Models Continuous Time Survival in Latent Variable Models Tihomir Asparouhov 1, Katherine Masyn 2, Bengt Muthen 3 Muthen & Muthen 1 University of California, Davis 2 University of California, Los Angeles 3 Abstract

More information

Chapter 4 Regression Models

Chapter 4 Regression Models 23.August 2010 Chapter 4 Regression Models The target variable T denotes failure time We let x = (x (1),..., x (m) ) represent a vector of available covariates. Also called regression variables, regressors,

More information

ADVANCED STATISTICAL ANALYSIS OF EPIDEMIOLOGICAL STUDIES. Cox s regression analysis Time dependent explanatory variables

ADVANCED STATISTICAL ANALYSIS OF EPIDEMIOLOGICAL STUDIES. Cox s regression analysis Time dependent explanatory variables ADVANCED STATISTICAL ANALYSIS OF EPIDEMIOLOGICAL STUDIES Cox s regression analysis Time dependent explanatory variables Henrik Ravn Bandim Health Project, Statens Serum Institut 4 November 2011 1 / 53

More information

Sample-weighted semiparametric estimates of cause-specific cumulative incidence using left-/interval censored data from electronic health records

Sample-weighted semiparametric estimates of cause-specific cumulative incidence using left-/interval censored data from electronic health records 1 / 22 Sample-weighted semiparametric estimates of cause-specific cumulative incidence using left-/interval censored data from electronic health records Noorie Hyun, Hormuzd A. Katki, Barry I. Graubard

More information

Definitions and examples Simple estimation and testing Regression models Goodness of fit for the Cox model. Recap of Part 1. Per Kragh Andersen

Definitions and examples Simple estimation and testing Regression models Goodness of fit for the Cox model. Recap of Part 1. Per Kragh Andersen Recap of Part 1 Per Kragh Andersen Section of Biostatistics, University of Copenhagen DSBS Course Survival Analysis in Clinical Trials January 2018 1 / 65 Overview Definitions and examples Simple estimation

More information

The influence of categorising survival time on parameter estimates in a Cox model

The influence of categorising survival time on parameter estimates in a Cox model The influence of categorising survival time on parameter estimates in a Cox model Anika Buchholz 1,2, Willi Sauerbrei 2, Patrick Royston 3 1 Freiburger Zentrum für Datenanalyse und Modellbildung, Albert-Ludwigs-Universität

More information

Analysis of competing risks data and simulation of data following predened subdistribution hazards

Analysis of competing risks data and simulation of data following predened subdistribution hazards Analysis of competing risks data and simulation of data following predened subdistribution hazards Bernhard Haller Institut für Medizinische Statistik und Epidemiologie Technische Universität München 27.05.2013

More information

Multistate models and recurrent event models

Multistate models and recurrent event models Multistate models Multistate models and recurrent event models Patrick Breheny December 10 Patrick Breheny Survival Data Analysis (BIOS 7210) 1/22 Introduction Multistate models In this final lecture,

More information

1 Introduction. 2 Residuals in PH model

1 Introduction. 2 Residuals in PH model Supplementary Material for Diagnostic Plotting Methods for Proportional Hazards Models With Time-dependent Covariates or Time-varying Regression Coefficients BY QIQING YU, JUNYI DONG Department of Mathematical

More information

STAT331. Cox s Proportional Hazards Model

STAT331. Cox s Proportional Hazards Model STAT331 Cox s Proportional Hazards Model In this unit we introduce Cox s proportional hazards (Cox s PH) model, give a heuristic development of the partial likelihood function, and discuss adaptations

More information

STA6938-Logistic Regression Model

STA6938-Logistic Regression Model Dr. Ying Zhang STA6938-Logistic Regression Model Topic 6-Logistic Regression for Case-Control Studies Outlines: 1. Biomedical Designs 2. Logistic Regression Models for Case-Control Studies 3. Logistic

More information

Power and Sample Size Calculations with the Additive Hazards Model

Power and Sample Size Calculations with the Additive Hazards Model Journal of Data Science 10(2012), 143-155 Power and Sample Size Calculations with the Additive Hazards Model Ling Chen, Chengjie Xiong, J. Philip Miller and Feng Gao Washington University School of Medicine

More information

Multivariable Fractional Polynomials

Multivariable Fractional Polynomials Multivariable Fractional Polynomials Axel Benner May 17, 2007 Contents 1 Introduction 1 2 Inventory of functions 1 3 Usage in R 2 3.1 Model selection........................................ 3 4 Example

More information

Reduced-rank hazard regression

Reduced-rank hazard regression Chapter 2 Reduced-rank hazard regression Abstract The Cox proportional hazards model is the most common method to analyze survival data. However, the proportional hazards assumption might not hold. The

More information

Multistate models and recurrent event models

Multistate models and recurrent event models and recurrent event models Patrick Breheny December 6 Patrick Breheny University of Iowa Survival Data Analysis (BIOS:7210) 1 / 22 Introduction In this final lecture, we will briefly look at two other

More information

A note on R 2 measures for Poisson and logistic regression models when both models are applicable

A note on R 2 measures for Poisson and logistic regression models when both models are applicable Journal of Clinical Epidemiology 54 (001) 99 103 A note on R measures for oisson and logistic regression models when both models are applicable Martina Mittlböck, Harald Heinzl* Department of Medical Computer

More information

Dynamic Prediction of Disease Progression Using Longitudinal Biomarker Data

Dynamic Prediction of Disease Progression Using Longitudinal Biomarker Data Dynamic Prediction of Disease Progression Using Longitudinal Biomarker Data Xuelin Huang Department of Biostatistics M. D. Anderson Cancer Center The University of Texas Joint Work with Jing Ning, Sangbum

More information

Relative-risk regression and model diagnostics. 16 November, 2015

Relative-risk regression and model diagnostics. 16 November, 2015 Relative-risk regression and model diagnostics 16 November, 2015 Relative risk regression More general multiplicative intensity model: Intensity for individual i at time t is i(t) =Y i (t)r(x i, ; t) 0

More information

Direct likelihood inference on the cause-specific cumulative incidence function: a flexible parametric regression modelling approach

Direct likelihood inference on the cause-specific cumulative incidence function: a flexible parametric regression modelling approach Direct likelihood inference on the cause-specific cumulative incidence function: a flexible parametric regression modelling approach Sarwar I Mozumder 1, Mark J Rutherford 1, Paul C Lambert 1,2 1 Biostatistics

More information

Package SimSCRPiecewise

Package SimSCRPiecewise Package SimSCRPiecewise July 27, 2016 Type Package Title 'Simulates Univariate and Semi-Competing Risks Data Given Covariates and Piecewise Exponential Baseline Hazards' Version 0.1.1 Author Andrew G Chapple

More information

The coxvc_1-1-1 package

The coxvc_1-1-1 package Appendix A The coxvc_1-1-1 package A.1 Introduction The coxvc_1-1-1 package is a set of functions for survival analysis that run under R2.1.1 [81]. This package contains a set of routines to fit Cox models

More information

A fast routine for fitting Cox models with time varying effects

A fast routine for fitting Cox models with time varying effects Chapter 3 A fast routine for fitting Cox models with time varying effects Abstract The S-plus and R statistical packages have implemented a counting process setup to estimate Cox models with time varying

More information

Multiple imputation to account for measurement error in marginal structural models

Multiple imputation to account for measurement error in marginal structural models Multiple imputation to account for measurement error in marginal structural models Supplementary material A. Standard marginal structural model We estimate the parameters of the marginal structural model

More information

Survival Analysis. Stat 526. April 13, 2018

Survival Analysis. Stat 526. April 13, 2018 Survival Analysis Stat 526 April 13, 2018 1 Functions of Survival Time Let T be the survival time for a subject Then P [T < 0] = 0 and T is a continuous random variable The Survival function is defined

More information

Statistics in medicine

Statistics in medicine Statistics in medicine Lecture 4: and multivariable regression Fatma Shebl, MD, MS, MPH, PhD Assistant Professor Chronic Disease Epidemiology Department Yale School of Public Health Fatma.shebl@yale.edu

More information

Power analysis for multivariable Cox regression models

Power analysis for multivariable Cox regression models Received: 21 August 2017 Revised: 31 July 2018 Accepted: 21 August 2018 DOI: 10.1002/sim.7964 RESEARCH ARTICLE Power analysis for multivariable Cox regression models Emil Scosyrev 1 Ekkehard Glimm 2 1

More information

FULL LIKELIHOOD INFERENCES IN THE COX MODEL

FULL LIKELIHOOD INFERENCES IN THE COX MODEL October 20, 2007 FULL LIKELIHOOD INFERENCES IN THE COX MODEL BY JIAN-JIAN REN 1 AND MAI ZHOU 2 University of Central Florida and University of Kentucky Abstract We use the empirical likelihood approach

More information

DYNAMIC PREDICTION MODELS FOR DATA WITH COMPETING RISKS. by Qing Liu B.S. Biological Sciences, Shanghai Jiao Tong University, China, 2007

DYNAMIC PREDICTION MODELS FOR DATA WITH COMPETING RISKS. by Qing Liu B.S. Biological Sciences, Shanghai Jiao Tong University, China, 2007 DYNAMIC PREDICTION MODELS FOR DATA WITH COMPETING RISKS by Qing Liu B.S. Biological Sciences, Shanghai Jiao Tong University, China, 2007 Submitted to the Graduate Faculty of the Graduate School of Public

More information

Introduction to Statistical Analysis

Introduction to Statistical Analysis Introduction to Statistical Analysis Changyu Shen Richard A. and Susan F. Smith Center for Outcomes Research in Cardiology Beth Israel Deaconess Medical Center Harvard Medical School Objectives Descriptive

More information

Towards stratified medicine instead of dichotomization, estimate a treatment effect function for a continuous covariate

Towards stratified medicine instead of dichotomization, estimate a treatment effect function for a continuous covariate Towards stratified medicine instead of dichotomization, estimate a treatment effect function for a continuous covariate Willi Sauerbrei 1, Patrick Royston 2 1 IMBI, University Medical Center Freiburg 2

More information

Available online Journal of Scientific and Engineering Research, 2018, 5(6): Research Article

Available online   Journal of Scientific and Engineering Research, 2018, 5(6): Research Article Available online www.jsaer.com, 2018, 5(6):32-51 Research Article ISSN: 2394-2630 CODEN(USA): JSERBR A Bayesian approach to relaxing the proportional hazard model and the form of baseline hazard in Survival

More information

STAT 5500/6500 Conditional Logistic Regression for Matched Pairs

STAT 5500/6500 Conditional Logistic Regression for Matched Pairs STAT 5500/6500 Conditional Logistic Regression for Matched Pairs Motivating Example: The data we will be using comes from a subset of data taken from the Los Angeles Study of the Endometrial Cancer Data

More information

Time-dependent covariates

Time-dependent covariates Time-dependent covariates Rasmus Waagepetersen November 5, 2018 1 / 10 Time-dependent covariates Our excursion into the realm of counting process and martingales showed that it poses no problems to introduce

More information

[Part 2] Model Development for the Prediction of Survival Times using Longitudinal Measurements

[Part 2] Model Development for the Prediction of Survival Times using Longitudinal Measurements [Part 2] Model Development for the Prediction of Survival Times using Longitudinal Measurements Aasthaa Bansal PhD Pharmaceutical Outcomes Research & Policy Program University of Washington 69 Biomarkers

More information

5. Parametric Regression Model

5. Parametric Regression Model 5. Parametric Regression Model The Accelerated Failure Time (AFT) Model Denote by S (t) and S 2 (t) the survival functions of two populations. The AFT model says that there is a constant c > 0 such that

More information

Survival Regression Models

Survival Regression Models Survival Regression Models David M. Rocke May 18, 2017 David M. Rocke Survival Regression Models May 18, 2017 1 / 32 Background on the Proportional Hazards Model The exponential distribution has constant

More information

HOW TO DETERMINE THE NUMBER OF SUBJECTS NEEDED FOR MY STUDY?

HOW TO DETERMINE THE NUMBER OF SUBJECTS NEEDED FOR MY STUDY? HOW TO DETERMINE THE NUMBER OF SUBJECTS NEEDED FOR MY STUDY? TUTORIAL ON SAMPLE SIZE AND POWER CALCULATIONS FOR INEQUALITY TESTS. John Zavrakidis j.zavrakidis@nki.nl May 28, 2018 J.Zavrakidis Sample and

More information

Multimodal Deep Learning for Predicting Survival from Breast Cancer

Multimodal Deep Learning for Predicting Survival from Breast Cancer Multimodal Deep Learning for Predicting Survival from Breast Cancer Heather Couture Deep Learning Journal Club Nov. 16, 2016 Outline Background on tumor histology & genetic data Background on survival

More information

Lecture 8 Stat D. Gillen

Lecture 8 Stat D. Gillen Statistics 255 - Survival Analysis Presented February 23, 2016 Dan Gillen Department of Statistics University of California, Irvine 8.1 Example of two ways to stratify Suppose a confounder C has 3 levels

More information

Statistical Methods For Biomarker Threshold models in clinical trials

Statistical Methods For Biomarker Threshold models in clinical trials Statistical Methods For Biomarker Threshold models in clinical trials by Parisa Gavanji A thesis submitted to the Department of Mathematics and Statistics in conformity with the requirements for the degree

More information

BIAS OF MAXIMUM-LIKELIHOOD ESTIMATES IN LOGISTIC AND COX REGRESSION MODELS: A COMPARATIVE SIMULATION STUDY

BIAS OF MAXIMUM-LIKELIHOOD ESTIMATES IN LOGISTIC AND COX REGRESSION MODELS: A COMPARATIVE SIMULATION STUDY BIAS OF MAXIMUM-LIKELIHOOD ESTIMATES IN LOGISTIC AND COX REGRESSION MODELS: A COMPARATIVE SIMULATION STUDY Ingo Langner 1, Ralf Bender 2, Rebecca Lenz-Tönjes 1, Helmut Küchenhoff 2, Maria Blettner 2 1

More information

Longitudinal + Reliability = Joint Modeling

Longitudinal + Reliability = Joint Modeling Longitudinal + Reliability = Joint Modeling Carles Serrat Institute of Statistics and Mathematics Applied to Building CYTED-HAROSA International Workshop November 21-22, 2013 Barcelona Mainly from Rizopoulos,

More information

Lecture 11. Interval Censored and. Discrete-Time Data. Statistics Survival Analysis. Presented March 3, 2016

Lecture 11. Interval Censored and. Discrete-Time Data. Statistics Survival Analysis. Presented March 3, 2016 Statistics 255 - Survival Analysis Presented March 3, 2016 Motivating Dan Gillen Department of Statistics University of California, Irvine 11.1 First question: Are the data truly discrete? : Number of

More information

4. Comparison of Two (K) Samples

4. Comparison of Two (K) Samples 4. Comparison of Two (K) Samples K=2 Problem: compare the survival distributions between two groups. E: comparing treatments on patients with a particular disease. Z: Treatment indicator, i.e. Z = 1 for

More information

STA6938-Logistic Regression Model

STA6938-Logistic Regression Model Dr. Ying Zhang STA6938-Logistic Regression Model Topic 2-Multiple Logistic Regression Model Outlines:. Model Fitting 2. Statistical Inference for Multiple Logistic Regression Model 3. Interpretation of

More information

Faculty of Health Sciences. Regression models. Counts, Poisson regression, Lene Theil Skovgaard. Dept. of Biostatistics

Faculty of Health Sciences. Regression models. Counts, Poisson regression, Lene Theil Skovgaard. Dept. of Biostatistics Faculty of Health Sciences Regression models Counts, Poisson regression, 27-5-2013 Lene Theil Skovgaard Dept. of Biostatistics 1 / 36 Count outcome PKA & LTS, Sect. 7.2 Poisson regression The Binomial

More information

Chapter 6. Logistic Regression. 6.1 A linear model for the log odds

Chapter 6. Logistic Regression. 6.1 A linear model for the log odds Chapter 6 Logistic Regression In logistic regression, there is a categorical response variables, often coded 1=Yes and 0=No. Many important phenomena fit this framework. The patient survives the operation,

More information

In contrast, parametric techniques (fitting exponential or Weibull, for example) are more focussed, can handle general covariates, but require

In contrast, parametric techniques (fitting exponential or Weibull, for example) are more focussed, can handle general covariates, but require Chapter 5 modelling Semi parametric We have considered parametric and nonparametric techniques for comparing survival distributions between different treatment groups. Nonparametric techniques, such as

More information

UNIVERSITY OF CALIFORNIA, SAN DIEGO

UNIVERSITY OF CALIFORNIA, SAN DIEGO UNIVERSITY OF CALIFORNIA, SAN DIEGO Estimation of the primary hazard ratio in the presence of a secondary covariate with non-proportional hazards An undergraduate honors thesis submitted to the Department

More information

49th European Organization for Quality Congress. Topic: Quality Improvement. Service Reliability in Electrical Distribution Networks

49th European Organization for Quality Congress. Topic: Quality Improvement. Service Reliability in Electrical Distribution Networks 49th European Organization for Quality Congress Topic: Quality Improvement Service Reliability in Electrical Distribution Networks José Mendonça Dias, Rogério Puga Leal and Zulema Lopes Pereira Department

More information

11 November 2011 Department of Biostatistics, University of Copengen. 9:15 10:00 Recap of case-control studies. Frequency-matched studies.

11 November 2011 Department of Biostatistics, University of Copengen. 9:15 10:00 Recap of case-control studies. Frequency-matched studies. Matched and nested case-control studies Bendix Carstensen Steno Diabetes Center, Gentofte, Denmark http://staff.pubhealth.ku.dk/~bxc/ Department of Biostatistics, University of Copengen 11 November 2011

More information

2011/04 LEUKAEMIA IN WALES Welsh Cancer Intelligence and Surveillance Unit

2011/04 LEUKAEMIA IN WALES Welsh Cancer Intelligence and Surveillance Unit 2011/04 LEUKAEMIA IN WALES 1994-2008 Welsh Cancer Intelligence and Surveillance Unit Table of Contents 1 Definitions and Statistical Methods... 2 2 Results 7 2.1 Leukaemia....... 7 2.2 Acute Lymphoblastic

More information

Lecture 1. Introduction Statistics Statistical Methods II. Presented January 8, 2018

Lecture 1. Introduction Statistics Statistical Methods II. Presented January 8, 2018 Introduction Statistics 211 - Statistical Methods II Presented January 8, 2018 linear models Dan Gillen Department of Statistics University of California, Irvine 1.1 Logistics and Contact Information Lectures:

More information

Part [1.0] Measures of Classification Accuracy for the Prediction of Survival Times

Part [1.0] Measures of Classification Accuracy for the Prediction of Survival Times Part [1.0] Measures of Classification Accuracy for the Prediction of Survival Times Patrick J. Heagerty PhD Department of Biostatistics University of Washington 1 Biomarkers Review: Cox Regression Model

More information

Lecture 22 Survival Analysis: An Introduction

Lecture 22 Survival Analysis: An Introduction University of Illinois Department of Economics Spring 2017 Econ 574 Roger Koenker Lecture 22 Survival Analysis: An Introduction There is considerable interest among economists in models of durations, which

More information

Stat 642, Lecture notes for 04/12/05 96

Stat 642, Lecture notes for 04/12/05 96 Stat 642, Lecture notes for 04/12/05 96 Hosmer-Lemeshow Statistic The Hosmer-Lemeshow Statistic is another measure of lack of fit. Hosmer and Lemeshow recommend partitioning the observations into 10 equal

More information

Lecture 5 Models and methods for recurrent event data

Lecture 5 Models and methods for recurrent event data Lecture 5 Models and methods for recurrent event data Recurrent and multiple events are commonly encountered in longitudinal studies. In this chapter we consider ordered recurrent and multiple events.

More information

A Bayesian Nonparametric Approach to Causal Inference for Semi-competing risks

A Bayesian Nonparametric Approach to Causal Inference for Semi-competing risks A Bayesian Nonparametric Approach to Causal Inference for Semi-competing risks Y. Xu, D. Scharfstein, P. Mueller, M. Daniels Johns Hopkins, Johns Hopkins, UT-Austin, UF JSM 2018, Vancouver 1 What are semi-competing

More information

Part III Measures of Classification Accuracy for the Prediction of Survival Times

Part III Measures of Classification Accuracy for the Prediction of Survival Times Part III Measures of Classification Accuracy for the Prediction of Survival Times Patrick J Heagerty PhD Department of Biostatistics University of Washington 102 ISCB 2010 Session Three Outline Examples

More information

Chapter 4 Fall Notations: t 1 < t 2 < < t D, D unique death times. d j = # deaths at t j = n. Y j = # at risk /alive at t j = n

Chapter 4 Fall Notations: t 1 < t 2 < < t D, D unique death times. d j = # deaths at t j = n. Y j = # at risk /alive at t j = n Bios 323: Applied Survival Analysis Qingxia (Cindy) Chen Chapter 4 Fall 2012 4.2 Estimators of the survival and cumulative hazard functions for RC data Suppose X is a continuous random failure time with

More information

Journal of Statistical Software

Journal of Statistical Software JSS Journal of Statistical Software January 2011, Volume 38, Issue 2. http://www.jstatsoft.org/ Analyzing Competing Risk Data Using the R timereg Package Thomas H. Scheike University of Copenhagen Mei-Jie

More information

Simulation-based robust IV inference for lifetime data

Simulation-based robust IV inference for lifetime data Simulation-based robust IV inference for lifetime data Anand Acharya 1 Lynda Khalaf 1 Marcel Voia 1 Myra Yazbeck 2 David Wensley 3 1 Department of Economics Carleton University 2 Department of Economics

More information

Pairwise rank based likelihood for estimating the relationship between two homogeneous populations and their mixture proportion

Pairwise rank based likelihood for estimating the relationship between two homogeneous populations and their mixture proportion Pairwise rank based likelihood for estimating the relationship between two homogeneous populations and their mixture proportion Glenn Heller and Jing Qin Department of Epidemiology and Biostatistics Memorial

More information

A TWO-STAGE LINEAR MIXED-EFFECTS/COX MODEL FOR LONGITUDINAL DATA WITH MEASUREMENT ERROR AND SURVIVAL

A TWO-STAGE LINEAR MIXED-EFFECTS/COX MODEL FOR LONGITUDINAL DATA WITH MEASUREMENT ERROR AND SURVIVAL A TWO-STAGE LINEAR MIXED-EFFECTS/COX MODEL FOR LONGITUDINAL DATA WITH MEASUREMENT ERROR AND SURVIVAL Christopher H. Morrell, Loyola College in Maryland, and Larry J. Brant, NIA Christopher H. Morrell,

More information

A Regression Model For Recurrent Events With Distribution Free Correlation Structure

A Regression Model For Recurrent Events With Distribution Free Correlation Structure A Regression Model For Recurrent Events With Distribution Free Correlation Structure J. Pénichoux(1), A. Latouche(2), T. Moreau(1) (1) INSERM U780 (2) Université de Versailles, EA2506 ISCB - 2009 - Prague

More information

Multivariate Survival Analysis

Multivariate Survival Analysis Multivariate Survival Analysis Previously we have assumed that either (X i, δ i ) or (X i, δ i, Z i ), i = 1,..., n, are i.i.d.. This may not always be the case. Multivariate survival data can arise in

More information

Variable Selection in Competing Risks Using the L1-Penalized Cox Model

Variable Selection in Competing Risks Using the L1-Penalized Cox Model Virginia Commonwealth University VCU Scholars Compass Theses and Dissertations Graduate School 2008 Variable Selection in Competing Risks Using the L1-Penalized Cox Model XiangRong Kong Virginia Commonwealth

More information

Chapter 4. Parametric Approach. 4.1 Introduction

Chapter 4. Parametric Approach. 4.1 Introduction Chapter 4 Parametric Approach 4.1 Introduction The missing data problem is already a classical problem that has not been yet solved satisfactorily. This problem includes those situations where the dependent

More information

Sample Size Determination

Sample Size Determination Sample Size Determination 018 The number of subjects in a clinical study should always be large enough to provide a reliable answer to the question(s addressed. The sample size is usually determined by

More information

Log-linearity for Cox s regression model. Thesis for the Degree Master of Science

Log-linearity for Cox s regression model. Thesis for the Degree Master of Science Log-linearity for Cox s regression model Thesis for the Degree Master of Science Zaki Amini Master s Thesis, Spring 2015 i Abstract Cox s regression model is one of the most applied methods in medical

More information

Multivariable Fractional Polynomials

Multivariable Fractional Polynomials Multivariable Fractional Polynomials Axel Benner September 7, 2015 Contents 1 Introduction 1 2 Inventory of functions 1 3 Usage in R 2 3.1 Model selection........................................ 3 4 Example

More information

PubH 7470: STATISTICS FOR TRANSLATIONAL & CLINICAL RESEARCH

PubH 7470: STATISTICS FOR TRANSLATIONAL & CLINICAL RESEARCH PubH 7470: STATISTICS FOR TRANSLATIONAL & CLINICAL RESEARCH The First Step: SAMPLE SIZE DETERMINATION THE ULTIMATE GOAL The most important, ultimate step of any of clinical research is to do draw inferences;

More information

Müller: Goodness-of-fit criteria for survival data

Müller: Goodness-of-fit criteria for survival data Müller: Goodness-of-fit criteria for survival data Sonderforschungsbereich 386, Paper 382 (2004) Online unter: http://epub.ub.uni-muenchen.de/ Projektpartner Goodness of fit criteria for survival data

More information

Philosophy and Features of the mstate package

Philosophy and Features of the mstate package Introduction Mathematical theory Practice Discussion Philosophy and Features of the mstate package Liesbeth de Wreede, Hein Putter Department of Medical Statistics and Bioinformatics Leiden University

More information

Quantile Regression for Residual Life and Empirical Likelihood

Quantile Regression for Residual Life and Empirical Likelihood Quantile Regression for Residual Life and Empirical Likelihood Mai Zhou email: mai@ms.uky.edu Department of Statistics, University of Kentucky, Lexington, KY 40506-0027, USA Jong-Hyeon Jeong email: jeong@nsabp.pitt.edu

More information

Package idmtpreg. February 27, 2018

Package idmtpreg. February 27, 2018 Type Package Package idmtpreg February 27, 2018 Title Regression Model for Progressive Illness Death Data Version 1.1 Date 2018-02-23 Author Leyla Azarang and Manuel Oviedo de la Fuente Maintainer Leyla

More information

ST745: Survival Analysis: Nonparametric methods

ST745: Survival Analysis: Nonparametric methods ST745: Survival Analysis: Nonparametric methods Eric B. Laber Department of Statistics, North Carolina State University February 5, 2015 The KM estimator is used ubiquitously in medical studies to estimate

More information

Goodness-of-Fit Tests With Right-Censored Data by Edsel A. Pe~na Department of Statistics University of South Carolina Colloquium Talk August 31, 2 Research supported by an NIH Grant 1 1. Practical Problem

More information

Survival Analysis Math 434 Fall 2011

Survival Analysis Math 434 Fall 2011 Survival Analysis Math 434 Fall 2011 Part IV: Chap. 8,9.2,9.3,11: Semiparametric Proportional Hazards Regression Jimin Ding Math Dept. www.math.wustl.edu/ jmding/math434/fall09/index.html Basic Model Setup

More information

Package threg. August 10, 2015

Package threg. August 10, 2015 Package threg August 10, 2015 Title Threshold Regression Version 1.0.3 Date 2015-08-10 Author Tao Xiao Maintainer Tao Xiao Depends R (>= 2.10), survival, Formula Fit a threshold regression

More information

Multi-state models: prediction

Multi-state models: prediction Department of Medical Statistics and Bioinformatics Leiden University Medical Center Course on advanced survival analysis, Copenhagen Outline Prediction Theory Aalen-Johansen Computational aspects Applications

More information

Direct likelihood inference on the cause-specific cumulative incidence function: a flexible parametric regression modelling approach

Direct likelihood inference on the cause-specific cumulative incidence function: a flexible parametric regression modelling approach Research Article Received XXXX (www.interscience.wiley.com) DOI: 10.1002/sim.0000 Direct likelihood inference on the cause-specific cumulative incidence function: a flexible parametric regression modelling

More information