BayesSurv_HReg {SemiCompRisks} | R Documentation |
The function to implement Bayesian parametric and semi-parametric regression analyses for univariate time-to-event data in the context of hazard regression (HReg) models.
Description
Independent/cluster-correlated univariate right-censored survival data can be analyzed using hierarchical models. The prior for the baseline hazard function can be specified by either parametric (Weibull) model or non-parametric mixture of piecewise exponential models (PEM).
Usage
BayesSurv_HReg(Formula, data, id=NULL, model="Weibull", hyperParams,
startValues, mcmcParams, na.action = "na.fail", subset=NULL, path=NULL)
Arguments
Formula |
a |
data |
a data.frame in which to interpret the variables named in |
id |
a vector of cluster information for |
model |
a character vector that specifies the type of components in a model. The first element is for the specification of baseline hazard functions: "Weibull" or "PEM". The second element needs to be set only for clustered data and is for the specification of cluster-specific random effects distribution: "Normal" or "DPM". |
hyperParams |
a list containing lists or vectors for hyperparameter values in hierarchical models. Components include,
|
startValues |
a list containing vectors of starting values for model parameters. It can be specified as the object returned by the function |
mcmcParams |
a list containing variables required for MCMC sampling. Components include,
|
na.action |
how NAs are treated. See |
subset |
a specification of the rows to be used: defaults to all rows. See |
path |
the name of directory where the results are saved. |
Details
The function BayesSurv_HReg
implements Bayesian semi-parametric (piecewise exponential mixture) and parametric (Weibull) models to univariate time-to-event data. Let denote time to event of interest from subject
in cluster
. The covariates
are incorporated via Cox proportional hazards model:
where is an unspecified baseline hazard function and
is a vector of
log-hazard ratio regression parameters.
's are cluster-specific random effects.
For parametric Normal prior specification for a vector of cluster-specific random effects, we assume
arise as i.i.d. draws from a mean 0 Normal distribution with variance
. Specifically, the priors can be written as follows:
For DPM prior specification for , we consider non-parametric Dirichlet process mixture of Normal distributions: the
's' are draws from a finite mixture of M Normal distributions, each with their own mean and variance, (
,
) for
. Let
denote the specific component to which the
th cluster belongs. Since the class-specific (
,
) are not known they are taken to be draws from some distribution,
, often referred to as the centering distribution. Furthermore, since the true class memberships are unknown, we denote the probability that the
th cluster belongs to any given class by the vector
whose components add up to 1.0. In the absence of prior knowledge regarding the distribution of class memberships for the
clusters across the
classes, a natural prior for
is the conjugate symmetric
distribution; the hyperparameter,
, is often referred to as a the precision parameter. The prior can be represented as follows (
goes to infinity):
where is taken to be a multivariate Normal/inverse-Gamma (NIG) distribution for which the probability density function is the following product:
In addition, we use as the hyperprior for
.
For non-parametric prior specification (PEM) for baseline hazard function, let denote the largest observed event time. Then, consider the finite partition of the relevant time axis into
disjoint intervals:
. For notational convenience, let
denote the
partition. For given a partition,
, we assume the log-baseline hazard functions is piecewise constant:
where is the indicator function and
. In our proposed Bayesian framework, our prior choices are:
Note that and
are treated as random and the priors for
and
jointly form a time-homogeneous Poisson process prior for the partition. The number of time splits and their positions are therefore updated within our computational scheme using reversible jump MCMC.
For parametric Weibull prior specification for baseline hazard function, .
In our Bayesian framework, our prior choices are:
We provide a detailed description of the hierarchical models for cluster-correlated univariate survival data. The models for independent data can be obtained by removing cluster-specific random effects, , and its corresponding prior specification from the description given above.
Value
BayesSurv_HReg
returns an object of class Bayes_HReg
.
Note
The posterior samples of are saved separately in
working directory/path
.
Author(s)
Kyu Ha Lee and Sebastien Haneuse
Maintainer: Kyu Ha Lee <klee15239@gmail.com>
References
Lee, K. H., Haneuse, S., Schrag, D., and Dominici, F. (2015),
Bayesian semiparametric analysis of semicompeting risks data:
investigating hospital readmission after a pancreatic cancer diagnosis, Journal of the Royal Statistical Society: Series C, 64, 2, 253-273.
Lee, K. H., Dominici, F., Schrag, D., and Haneuse, S. (2016),
Hierarchical models for semicompeting risks data with application to quality of end-of-life care for pancreatic cancer, Journal of the American Statistical Association, 111, 515, 1075-1095.
Alvares, D., Haneuse, S., Lee, C., Lee, K. H. (2019),
SemiCompRisks: An R package for the analysis of independent and cluster-correlated semi-competing risks data, The R Journal, 11, 1, 376-400.
See Also
initiate.startValues_HReg
, print.Bayes_HReg
, summary.Bayes_HReg
, predict.Bayes_HReg
Examples
## Not run:
# loading a data set
data(survData)
id=survData$cluster
form <- Formula(time + event ~ cov1 + cov2)
#####################
## Hyperparameters ##
#####################
## Weibull baseline hazard function: alpha1, kappa1
##
WB.ab <- c(0.5, 0.01) # prior parameters for alpha
##
WB.cd <- c(0.5, 0.05) # prior parameters for kappa
## PEM baseline hazard function:
##
PEM.ab <- c(0.7, 0.7) # prior parameters for 1/sigma^2
##
PEM.alpha <- 10 # prior parameters for K
## Normal cluster-specific random effects
##
Normal.ab <- c(0.5, 0.01) # prior for zeta
## DPM cluster-specific random effects
##
DPM.ab <- c(0.5, 0.01)
aTau <- 1.5
bTau <- 0.0125
##
hyperParams <- list(WB=list(WB.ab=WB.ab, WB.cd=WB.cd),
PEM=list(PEM.ab=PEM.ab, PEM.alpha=PEM.alpha),
Normal=list(Normal.ab=Normal.ab),
DPM=list(DPM.ab=DPM.ab, aTau=aTau, bTau=bTau))
###################
## MCMC SETTINGS ##
###################
## Setting for the overall run
##
numReps <- 2000
thin <- 10
burninPerc <- 0.5
## Settings for storage
##
storeV <- TRUE
## Tuning parameters for specific updates
##
## - those common to all models
mhProp_V_var <- 0.05
##
## - those specific to the Weibull specification of the baseline hazard functions
mhProp_alpha_var <- 0.01
##
## - those specific to the PEM specification of the baseline hazard functions
C <- 0.2
delPert <- 0.5
rj.scheme <- 1
K_max <- 50
s_max <- max(survData$time[survData$event == 1])
time_lambda <- seq(1, s_max, 1)
##
mcmc.WB <- list(run=list(numReps=numReps, thin=thin, burninPerc=burninPerc),
storage=list(storeV=storeV),
tuning=list(mhProp_alpha_var=mhProp_alpha_var, mhProp_V_var=mhProp_V_var))
##
mcmc.PEM <- list(run=list(numReps=numReps, thin=thin, burninPerc=burninPerc),
storage=list(storeV=storeV),
tuning=list(mhProp_V_var=mhProp_V_var, C=C, delPert=delPert,
rj.scheme=rj.scheme, K_max=K_max, time_lambda=time_lambda))
################################################################
## Analysis of Independent Univariate Survival Data ############
################################################################
#############
## WEIBULL ##
#############
##
myModel <- "Weibull"
myPath <- "Output/01-Results-WB/"
startValues <- initiate.startValues_HReg(form, survData, model=myModel, nChain=2)
##
fit_WB <- BayesSurv_HReg(form, survData, id=NULL, model=myModel,
hyperParams, startValues, mcmc.WB, path=myPath)
fit_WB
summ.fit_WB <- summary(fit_WB); names(summ.fit_WB)
summ.fit_WB
pred_WB <- predict(fit_WB, tseq=seq(from=0, to=30, by=5))
plot(pred_WB, plot.est="Haz")
plot(pred_WB, plot.est="Surv")
#########
## PEM ##
#########
##
myModel <- "PEM"
myPath <- "Output/02-Results-PEM/"
startValues <- initiate.startValues_HReg(form, survData, model=myModel, nChain=2)
##
fit_PEM <- BayesSurv_HReg(form, survData, id=NULL, model=myModel,
hyperParams, startValues, mcmc.PEM, path=myPath)
fit_PEM
summ.fit_PEM <- summary(fit_PEM); names(summ.fit_PEM)
summ.fit_PEM
pred_PEM <- predict(fit_PEM)
plot(pred_PEM, plot.est="Haz")
plot(pred_PEM, plot.est="Surv")
###############################################################
## Analysis of Correlated Univariate Survival Data ############
###############################################################
####################
## WEIBULL-NORMAL ##
####################
##
myModel <- c("Weibull", "Normal")
myPath <- "Output/03-Results-WB_Normal/"
startValues <- initiate.startValues_HReg(form, survData, model=myModel, id, nChain=2)
##
fit_WB_N <- BayesSurv_HReg(form, survData, id, model=myModel,
hyperParams, startValues, mcmc.WB, path=myPath)
fit_WB_N
summ.fit_WB_N <- summary(fit_WB_N); names(summ.fit_WB_N)
summ.fit_WB_N
pred_WB_N <- predict(fit_WB_N, tseq=seq(from=0, to=30, by=5))
plot(pred_WB_N, plot.est="Haz")
plot(pred_WB_N, plot.est="Surv")
#################
## WEIBULL-DPM ##
#################
##
myModel <- c("Weibull", "DPM")
myPath <- "Output/04-Results-WB_DPM/"
startValues <- initiate.startValues_HReg(form, survData, model=myModel, id, nChain=2)
##
fit_WB_DPM <- BayesSurv_HReg(form, survData, id, model=myModel,
hyperParams, startValues, mcmc.WB, path=myPath)
fit_WB_DPM
summ.fit_WB_DPM <- summary(fit_WB_DPM); names(summ.fit_WB_DPM)
summ.fit_WB_DPM
pred_WB_DPM <- predict(fit_WB_DPM, tseq=seq(from=0, to=30, by=5))
plot(pred_WB_DPM, plot.est="Haz")
plot(pred_WB_DPM, plot.est="Surv")
################
## PEM-NORMAL ##
################
##
myModel <- c("PEM", "Normal")
myPath <- "Output/05-Results-PEM_Normal/"
startValues <- initiate.startValues_HReg(form, survData, model=myModel, id, nChain=2)
##
fit_PEM_N <- BayesSurv_HReg(form, survData, id, model=myModel,
hyperParams, startValues, mcmc.PEM, path=myPath)
fit_PEM_N
summ.fit_PEM_N <- summary(fit_PEM_N); names(summ.fit_PEM_N)
summ.fit_PEM_N
pred_PEM_N <- predict(fit_PEM_N)
plot(pred_PEM_N, plot.est="Haz")
plot(pred_PEM_N, plot.est="Surv")
#############
## PEM-DPM ##
#############
##
myModel <- c("PEM", "DPM")
myPath <- "Output/06-Results-PEM_DPM/"
startValues <- initiate.startValues_HReg(form, survData, model=myModel, id, nChain=2)
##
fit_PEM_DPM <- BayesSurv_HReg(form, survData, id, model=myModel,
hyperParams, startValues, mcmc.PEM, path=myPath)
fit_PEM_DPM
summ.fit_PEM_DPM <- summary(fit_PEM_DPM); names(summ.fit_PEM_DPM)
summ.fit_PEM_DPM
pred_PEM_DPM <- predict(fit_PEM_DPM)
plot(pred_PEM_DPM, plot.est="Haz")
plot(pred_PEM_DPM, plot.est="Surv")
## End(Not run)