Learn R Programming

⚠️There's a newer version (1.2.8) of this package.Take me there.

joineR

The joineR package implements methods for analyzing data from longitudinal studies in which the response from each subject consists of a time-sequence of repeated measurements and a possibly censored time-to-event outcome. The modelling framework for the repeated measurements is the linear model with random effects and/or correlated error structure (Laird and Ware, 1982). The model for the time-to-event outcome is a Cox proportional hazards model with log-Gaussian frailty (Cox, 1972). Stochastic dependence is captured by allowing the Gaussian random effects of the linear model to be correlated with the frailty term of the Cox proportional hazards model. The methodology used to fit the model is described in Henderson et al. (2002) and Wulfsohn and Tsiatis (1997).

The joineR package also allows competing risks data to be jointly modelled through a cause-specific hazards model. The importance of accounting for competing risks is detailed in Williamson et al. (2007a,b). The methodology used to fit this model is described in Williamson et al. (2008).

Example

The joineR package comes with several data sets including one the describes the survival of patients who underwent aortic valve replacement surgery. The patients were routinely followed up in clinic, where the left ventricular mass index (LVMI) was calculated. To fit a joint model, we must first create a jointdata object, which holds the survival, longitudinal, and baseline covariate data, along with the names of the columns that identify the patient identifiers and repeated time outcomes.

library(joineR)
#> Loading required package: survival
data(heart.valve)
heart.surv <- UniqueVariables(heart.valve, 
                              var.col = c("fuyrs", "status"),
                              id.col = "num")
heart.long <- heart.valve[, c("num", "time", "log.lvmi")]
heart.cov <- UniqueVariables(heart.valve, 
                             c("age", "hs", "sex"), 
                             id.col = "num")
heart.valve.jd <- jointdata(longitudinal = heart.long, 
                            baseline = heart.cov, 
                            survival = heart.surv, 
                            id.col = "num", 
                            time.col = "time")

With the creation of the heart.valve.jd object, we can fit a joint model using the joint function. For this, we need 4 arguments:

  • jointdata: the data object we created above
  • long.formula: the linear mixed effects model formula for the longitudinal sub-model
  • surv.formula: the survival formula the survival sub-model
  • model: the latent association structure.
fit <- joint(data = heart.valve.jd, 
             long.formula = log.lvmi ~ 1 + time + hs, 
             surv.formula = Surv(fuyrs, status) ~ hs, 
             model = "intslope")

summary(fit)
#> 
#> Call:
#> joint(data = heart.valve.jd, long.formula = log.lvmi ~ 1 + time + 
#>     hs, surv.formula = Surv(fuyrs, status) ~ hs, model = "intslope")
#> 
#> Random effects joint model
#>  Data: heart.valve.jd 
#>  Log-likelihood: -424.7062 
#> 
#> Longitudinal sub-model fixed effects: log.lvmi ~ 1 + time + hs                              
#> (Intercept)        4.993354492
#> time              -0.006966354
#> hsStentless valve  0.055452730
#> 
#> Survival sub-model fixed effects: Surv(fuyrs, status) ~ hs                           
#> hsStentless valve 0.7926683
#> 
#> Latent association:                 
#> gamma_0 0.8227578
#> 
#> Variance components:
#>         U_0         U_1    Residual 
#> 0.113521695 0.001757578 0.037086210 
#> 
#> Convergence at iteration: 13 
#> 
#> Number of observations: 988 
#> Number of groups: 256

Full details on the data and the functions are provided in the help documentation and package vignette. The purpose of this code is to simply illustrate the ease and speed in fitting the models.

Multivariate data

joineR only models a single repeated measurement and a single event time. If multiple longitudinal outcomes are available (see Hickey et al., 2016), a separate package is available: joineRML.

Funding

This project was funded by the Medical Research Council (Grant numbers G0400615 and MR/M013227/1).

Using the latest developmental version

To install the latest developmental version, you will need the R package devtools and to run the following code

library('devtools')
install_github('graemeleehickey/joineR', build_vignettes = FALSE)

References

  1. Cox DR. Regression models and life-tables. J R Stat Soc Ser B Stat Methodol. 1972; 34(2): 187-220.

  2. Henderson R, Diggle PJ, Dobson A. Joint modelling of longitudinal measurements and event time data. Biostatistics. 2000; 1(4): 465-480.

  3. Hickey GL, Philipson P, Jorgensen A, Kolamunnage-Dona R. Joint modelling of time-to-event and multivariate longitudinal outcomes: recent developments and issues. BMC Med Res Methodol. 2016; 16(1): 117.

  4. Laird NM, Ware JH. Random-effects models for longitudinal data. Biometrics. 1982; 38(4): 963-974.

  5. Williamson PR, Kolamunnage-Dona R, Tudur-Smith C. The influence of competing-risks setting on the choice of hypothesis test for treatment effect. Biostatistics. 2007; 8(4): 689–694.

  6. Williamson PR., Tudur-Smith C, Sander JW, Marson AG. Importance of competing risks in the analysis of anti-epileptic drug failure. Trials. 2007; 8: 12.

  7. Williamson PR, Kolamunnage-Dona R, Philipson P, Marson AG. Joint modelling of longitudinal and competing risks data. Stat Med. 2008; 27: 6426–6438.

  8. Wulfsohn MS, Tsiatis AA. A joint model for survival and longitudinal data measured with error. Biometrics. 1997; 53(1): 330-339.

Copy Link

Version

Install

install.packages('joineR')

Monthly Downloads

663

Version

1.2.5

License

GPL-3 | file LICENSE

Issues

Pull Requests

Stars

Forks

Maintainer

Last Published

February 8th, 2020

Functions in joineR (1.2.5)

jointdata

Creates an object of class jointdata
joineR

joineR
jointplot

Joint plot of longitudinal and survival data
UniqueVariables

Extracts the unique non-time dependent variables per patient, from an unbalanced data set
epileptic

Dose calibration of anti-epileptic drugs data
aids

AIDS drug trial data
joint

Fit joint model for survival and longitudinal data measured with error
joint.object

Fitted joint object
mental

Mental health trial data
heart.valve

Aortic valve replacement surgery data
plot.jointdata

Plot longitudinal data
plot.vargm

Plots the empirical variogram for longitudinal data
jointSE

Standard errors via bootstrap for a joint model fit
subset.jointdata

Subsetting object of class jointdata
points.jointdata

Add points to an existing jointdata plot
variogram

Empirical variogram for longitudinal data
sample.jointdata

Sample from a jointdata x
summary.joint

Summarise a random effects joint model fit
summary.jointdata

Summarise a jointdata object
summarybal

Summary of a balanced longitudinal data set
simjoint

Simulate data from a joint model
liver

Liver cirrhosis drug trial data
lines.jointdata

Add lines to an existing jointdata plot
to.balanced

Transform data to the longitudinal balanced format
to.unbalanced

Transform data to the longitudinal unbalanced format