Description Usage Format Details See Also
A list of length two containing a one stage jointmeta1 fit and corresponding bootstrapped standard errors.
1 |
A list of 2 objects:
onestagefit0
an object
of class jointmeta1
onestagefit0SE
an object of class
jointmeta1SE
These are the results of using the jointmeta1
function to fit
a one stage joint meta model for multi-study data, and also the bootstrap
results of applying the jointmetaSE
function to the resulting model
fit. The data used is the simdat2
data available in the
joineRmeta
package. This data has three levels, namely the
longitudinal measurements at level 1, nested within individuals (level 2)
who are themselves nested within studies (level 3).
The format of this model is as follows. The structure of the longitudinal sub-model is:
Y_{kij} = β_{10} + β_{11}time + β_{12}treat + b^{(2)}_{0ki} + b^{(2)}_{1ki}time + ε_{kij}
Y_{kij} represents the continuous longitudinal outcome for the ith individual in the kth study at the jth time point, fixed effect coefficients are represented by β, random effects coefficients by b and the measurement error by ε. For the random effects the superscript of 2 indicates that these are individual level, or level 2 random effects. This means they take can take a unique value for each individual in the dataset. The longitudinal time variable is represented by time, and the treatment assignment variable (a binary factor) is represented by treat.
The survival sub-model had format:
λ_{ki}(t) = λ_{0}(t)exp(β_{21}treat + α^{(2)}(b^{(2)}_{0ki} + b^{(2)}_{1ki}time))
In the above equation, λ_{ki}(t) represents the survival time of the individual i in study k, and λ_{0}(t) represents the unspecified baseline hazard. This baseline was not stratified by study. The fixed effect coefficient is represented by β_{21}. A proportional random effects only association structure links the sub-models, with α^{(2)} representing the association between the longitudinal and survival outcomes attributable to the deviation of the individual in question from the population mean longitudinal trajectory.
We differentiate between the fixed effect coefficients in the longitudinal and the survival sub-models by varying the first number present in the subscript of the fixed effect, which takes a 1 for coefficients from the longitudinal sub-model and a 2 for coefficients from the survival sub-model.
This is a naive model as it analyses data from all the studies in the dataset but does not account for between study heterogeneity (differences between the studies included in the dataset) in any way.
These fits have been provided in this package for use with the package vignette, see the vignette for more information.
The code used to fit this one stage model was:
onestagefit0<-jointmeta1(data = jointdat, long.formula = Y ~ 1 +
time + treat, long.rand.ind = c('int', 'time'), sharingstrct = 'randprop',
surv.formula = Surv(survtime, cens) ~ treat, study.name = 'study', strat =
F)
And the code used to bootstrap the model was:
onestagefit0SE<-jointmetaSE(fitted = onestagefit0, n.boot = 200)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.