rmstPseudo: Calculate the RMST in each arm and the between-group...

Description Usage Arguments Value Examples

Description

This function calculates an estimate of the RMST by generating a pseudovalue for each patient, and then fitting a GEE model to these pseudovalues with arm as a term in the model. The pseudovalues are generated using the function pseudomean from the package pseudo and the GEE is fit using the function geese from the package geepack. For further information see the pseudo or geepack documentation.

Usage

1
rmstPseudo(formula, data, trunc, alpha = 0.05)

Arguments

formula

a formula object, with the response on the left of a ~ operator, and the a single term for arm on the right. The response must be a survival object as returned by the Surv function.

data

a data.frame in which to interpret the variables named in the formula.

trunc

the time point to truncated the estimate of the RMST at.

alpha

The default is 0.05. (1-alpha) confidence intervals are reported.

Value

The Restricted Mean Survival Time computated by fitting a GEE to pseudovalues generated for each patient

Examples

1
2
3
4
5
# Load in an example data set
D <- rmst2.sample.data()

# Calculate the RMST based on the pseudovalue approach
rmstPseudo(Surv(time, status) ~ arm, data=D, trunc=5, alpha=0.05)

scientific-computing-solutions/RMST documentation built on May 14, 2019, 10:35 a.m.