The hardware and bandwidth for this mirror is donated by METANET, the Webhosting and Full Service-Cloud Provider.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]metanet.ch.

CRAN status survobj website

survobj

by John Aponte

survobj simulates survival times through a consistent, reusable interface for each distribution, using an object-oriented design. It supports the Exponential, Weibull, Gompertz, Log-Logistic, Log-Normal, and Piecewise Exponential distributions, and can generate random variates under Proportional Hazards, Accelerated Failure Time, and Extended Hazards models, as well as under renewal and non-homogeneous Poisson recurrent event processes.

It is meant for simulation studies: power calculations, sample size justification, or checking how an analysis method behaves under a known data-generating process.

Quick start

library(survobj)

# Define a Weibull SURVIVAL object from a failure proportion at a given time
obj <- s_weibull(fail = 0.4, t = 1, shape = 1.5)

# Survival, hazard and cumulative hazard at time 0.5
sfx(obj, 0.5)
hfx(obj, 0.5)
Cum_Hfx(obj, 0.5)

# Draw 10 random survival times from the baseline distribution
rsurv(obj, 10)

# Draw random survival times under a hazard ratio of 0.7
rsurvhr(obj, rep(0.7, 10))

# Plot the survival, hazard, cumulative hazard and inverse cumulative
# hazard functions
plot(obj)

Usage

It is necessary first to define a SURVIVAL object for a distribution (e.g. with s_weibull()), in order to evaluate its properties or to simulate survival times from it. This object encapsulates, in a consistent way, all the functions associated with that distribution, so the same code works regardless of the distribution chosen.

Once a SURVIVAL object is defined, it gives access to the same set of functions regardless of the underlying distribution:

Recurrent events (repeated episodes per subject) can be simulated under a renewal process or a non-homogeneous Poisson process:

A set of plotting helpers visualize simulations against the baseline distribution using Kaplan-Meier and cumulative hazard curves:

Distributions

SURVIVAL objects can be created using the following factory functions:

Each of these functions can be parameterized either by its canonical parameters, or by the proportion surviving/failing at a given time, which is often more natural when planning a study.

See the vignettes for worked examples of simulating survival data, including recurrent events and non-proportional hazards trials.

Installation

To install the released version from CRAN use:

install.packages("survobj")

To install the development version of this package from GitHub use:

devtools::install_github("johnaponte/survobj", build_manual = TRUE, build_vignettes = TRUE)

Learn more

https://johnaponte.github.io/survobj/

These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.