bivrecReg: Semiparametric Regression Analysis of Bivariate Alternating...

Description Usage Arguments Details Value References Examples

View source: R/bivrecReg.R

Description

This function allows the user to evaluate covariate effects on two alternating recurrent events gap times (referred as Type I and Type II gap times) under the assumption that the two gap times follow accelerated failure time (AFT) models. See details for the estimation methods provided.

Usage

1

Arguments

formula

A formula with a bivrecSurv object on the left of a ~ operator as response, and the covariate(s) on the right.

data

A data frame that includes the vectors needed for the bivrecSurv response and the covariates in the formula.

method

A string indicating which method to use to estimate effects of the covariates. See details.

Details

Two different estimation methods are available:

Related methods: coef.bivrecReg, confint.bivrecReg, plot, print, summary.bivrecReg, vcov.bivrecReg.

Value

A bivrecReg object that contains:

References

  1. Chang S-H. (2004). Estimating marginal effects in accelerated failure time models for serial sojourn times among repeated events. Lifetime Data Analysis, 10: 175-190. doi: 10.1023/B:LIDA.0000030202.20842.c9

  2. Lee CH, Huang CY, Xu G, Luo X. (2018). Semiparametric regression analysis for alternating recurrent event data. Statistics in Medicine, 37: 996-1008. doi: 10.1002/sim.7563

  3. Parzen MI, Wei LJ, Ying Z. (1994). A resampling method based on pivotal estimating functions. Biometrika, 81: 341-350. http://www.people.fas.harvard.edu/~mparzen/published/parzen1.pdf

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
## Not run: 

library(BivRec)
set.seed(28)
# Simulate bivariate alternating recurrent event data
bivrec_data <- simBivRec(nsize=100, beta1=c(0.5,0.5), beta2=c(0,-0.5),
               tau_c=63, set=1.1)
# Apply Lee, Huang, Xu, Luo (2018) method using two covariates
lee_reg <- bivrecReg(bivrecSurv(id, epi, xij, yij, d1, d2) ~ a1 + a2,
                     bivrec_data, "Lee.et.al")
summary(lee_reg)


## End(Not run)

BivRec documentation built on June 5, 2021, 9:06 a.m.