Joint Models For Longitudinal and Time To Event Data With Applications in R, 1st Edition Complete Ebook Edition
Joint Models For Longitudinal and Time To Event Data With Applications in R, 1st Edition Complete Ebook Edition
Visit the link below to download the full version of this book:
https://medidownload.com/product/joint-models-for-longitudinal-and-time-to-event
-data-with-applications-in-r-1st-edition/
Dimitris Rizopoulos
This book contains information obtained from authentic and highly regarded sources. Reasonable
efforts have been made to publish reliable data and information, but the author and publisher cannot
assume responsibility for the validity of all materials or the consequences of their use. The authors and
publishers have attempted to trace the copyright holders of all material reproduced in this publication
and apologize to copyright holders if permission to publish in this form has not been obtained. If any
copyright material has not been acknowledged please write and let us know so we may rectify in any
future reprint.
Except as permitted under U.S. Copyright Law, no part of this book may be reprinted, reproduced,
transmitted, or utilized in any form by any electronic, mechanical, or other means, now known or
hereafter invented, including photocopying, microfilming, and recording, or in any information stor-
age or retrieval system, without written permission from the publishers.
For permission to photocopy or use material electronically from this work, please access www.copy-
right.com (http://www.copyright.com/) or contact the Copyright Clearance Center, Inc. (CCC), 222
Rosewood Drive, Danvers, MA 01923, 978-750-8400. CCC is a not-for-profit organization that pro-
vides licenses and registration for a variety of users. For organizations that have been granted a pho-
tocopy license by the CCC, a separate system of payment has been arranged.
Trademark Notice: Product or corporate names may be trademarks or registered trademarks, and are
used only for identification and explanation without intent to infringe.
Visit the Taylor & Francis Web site at
http://www.taylorandfrancis.com
and the CRC Press Web site at
http://www.crcpress.com
To Roula and my parents
Joint models for longitudinal and time-to-event data have become a valuable
tool in the analysis of follow-up data. These models are applicable mainly in
two settings: First, when the focus is on the survival outcome and we wish to
account for the effect of an endogenous time-dependent covariate measured
with error, and second, when the focus is on the longitudinal outcome and
we wish to correct for nonrandom dropout. Due to the capability of joint
models to provide valid inferences in settings where simpler statistical tools
fail to do so, and their wide range of applications, the last 25 years have
seen many advances in the joint modeling field. Even though interest and
developments in joint models have been widespread, information about them
has been equally scattered in articles, presenting recent advances in the field,
and in book chapters in a few texts dedicated either to longitudinal or survival
data analysis. However, no single monograph or text dedicated to this type of
models seems to be available.
The purpose in writing this book, therefore, is to provide an overview of
the theory and application of joint models for longitudinal and survival data.
In the literature two main frameworks have been proposed, namely the ran-
dom effects joint model that uses latent variables to capture the associations
between the two outcomes (Tsiatis and Davidian, 2004), and the marginal
structural joint models based on G estimators (Robins et al., 1999, 2000).
In this book we focus on the former. Both subfields of joint modeling, i.e.,
handling of endogenous time-varying covariates and nonrandom dropout, are
equally covered and presented in real datasets. Motivated by the background
and collaborations of the author, these examples come from the medical field
and in particular from biomarker research. Nevertheless, joint models of this
vii
viii
All the analyses included in the book are implemented in the R software
environment for statistical computing and graphics, using the freely avail-
able package JM written by the author. This package fits a wide range of
joint models, including the extensions mentioned above. However, it does not
cover all of the types of joint models that have been proposed in the liter-
ature, and therefore, some extensions, such as joint models for categorical
longitudinal markers and multiple longitudinal markers are introduced in the
text, but without any software illustration. The results presented in the text
were produced using version 1.0-0 of package JM and R 2.15.0. The current
version of the package can be obtained from the Comprehensive R Archive
Network (http://cran.r-project.org). Because of platform dependencies,
the analysis results may be expected to vary slightly with different computers
or operating systems, and future versions of R and the package. All the code
used in the text is available from the supporting Web site
http://jmr.r-forge.r-project.org
The author would appreciate being informed of typos, errors and improve-
ments to the contents of this book, and may be contacted via electronic mail
at
Prerequisites
The contents in this book assume familiarity with basic concepts of statistical
data analysis at the level of an introductory course in statistics, including
standard maximum likelihood theory, and a strong background in regression
analysis. Some background knowledge of mixed effects models and survival
analysis would also be beneficial but is not required. Similarly, with respect to
R, the book does not assume any prior knowledge, but basic familiarity with
the language would be helpful.
ix
Typographical Conventions
R language objects, commands and output referenced throughout this book
are printed in a monospace typewriter font. Code that could be interactively
entered at the R command line is formatted as:
> x <- 5
where > denotes the R command-line prompt and everything else is what the
user should enter. In addition, R expressions that do not fit in a single line
will be appropriately indented like this:
> jointModel(lmeFit, coxFit, timeVar = "time",
method = "weibull-PH-aGH", parameterization = "both")
Acknowledgements
Many pieces of the work presented in this monograph are based on joint re-
search with Geert Verbeke and Geert Molenberghs, with whom it has been my
great pleasure to collaborate. I would also like to thank Emmanuel Lesaffre
for useful discussions on joint modeling topics, and for creating a stimulating
work environment. Special thanks also goes to all users of JM whose input
has greatly benefitted the development of the package.
With regard to this book in particular, I would like to thank the anony-
mous reviewers for valuable feedback on earlier versions of the manuscript, and
John Kimmel at Chapman and Hall/CRC for his help and support during the
whole production process. This monograph was written using a combination
of Friedrich Leisch’s Sweave package, the LATEX document preparation sys-
tem, and, of course, R.
Dimitris Rizopoulos
Rotterdam, April 2012
x
Contents
Preface vii
1 Introduction 1
1.1 Goals . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1
1.2 Motivating Studies . . . . . . . . . . . . . . . . . . . . . . . . 2
1.2.1 Primary Biliary Cirrhosis Data . . . . . . . . . . . . . 2
1.2.2 AIDS Data . . . . . . . . . . . . . . . . . . . . . . . . 3
1.2.3 Liver Cirrhosis Data . . . . . . . . . . . . . . . . . . . 4
1.2.4 Aortic Valve Data . . . . . . . . . . . . . . . . . . . . 6
1.2.5 Other Applications . . . . . . . . . . . . . . . . . . . . 7
1.3 Inferential Objectives in Longitudinal Studies . . . . . . . . . 8
1.3.1 Effect of Covariates on a Single Outcome . . . . . . . 9
1.3.2 Association between Outcomes . . . . . . . . . . . . . 9
1.3.3 Complex Hypothesis Testing . . . . . . . . . . . . . . 10
1.3.4 Prediction . . . . . . . . . . . . . . . . . . . . . . . . . 10
1.3.5 Statistical Analysis with Implicit Outcomes . . . . . . 11
1.4 Overview . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 11
xi
xii
References 239
Index 257
xiv
Chapter 1
Introduction
1.1 Goals
In follow-up studies different types of outcomes are typically collected for each
sample unit, which may include several longitudinally measured responses, and
the time until an event of particular interest occurs. The research questions
of interest in such studies often require the separate analysis of the recorded
outcomes, but in many occasions interest may also lie in studying their as-
sociation structure. A frequently encountered example of the latter case can
be found in biomarker research, where many clinical studies are designed to
identify biomarkers with strong prognostic capabilities for event time out-
comes. Standard examples include among others, human immunodeficiency
virus (HIV) research in which interest lies in the association between CD4
cell counts or viral load and the time to Acquired immune deficiency syn-
drom (AIDS), liver cirrhosis studies which investigate the association between
serum bilirubin and the time to death, and prostate cancer studies in which
interest lies in the association between prostate-specific antigen (PSA) levels
and the time to the development of prostate cancer. An important inherent
characteristic of these medical conditions is their dynamic nature. That is,
the rate of progression is not only different from patient to patient but also
dynamically changes in time for the same patient. Thus, the true potential of
a biomarker in describing disease progression and its association with survival
can only be revealed when repeated evaluations of the marker are considered
in the analysis.