by John Aponte
Introduction
This package defines a set of classes that encapsulate survival distributions
The objects of the class SURVIVAL encapsulate distributions of survival times. Each class has its own set of parameters but once the SURVIVAL object is defined, they have access to the same functions to calculate:
survival time function:
sfx()
,hazard time function:
hfx()
,cumulative hazard function:
Cum_Hfx()
the inverse of the cumulative hazard function:
invCum_Hfx()
.generate random survival times:
rsurv()
generate random survival times under proportional hazard ratio:
rsurvhr()
.generate random survival times under accelerated failure :
rsuvrvaft()
generate random survival times under accelerate hazard:
rsurvah()
There are several functions to plot the distributions
generic S3:
plot.SURVIVAL()
plot_survival()
: to plot the functionsggplot_survival_random()
: to ggplot random draws from the distributionggplot_survival_hr()
: to ggplot random draws from the distribution using hazard ratioggplot_survival_aft()
: to ggplot random draws from the distribution using accelerated time failureggplot_survival_ah()
: to ggplot random draws from the distribution using accelerated hazardcompare_survival()
: to graphically compare the functions of two SURVIVAL objects
Distributions
The current factories are implemented:
s_exponential()
: for Exponential distributionss_weibull()
: for Weibull distributionss_gompertz()
: for Gompertz distributionss_piecewise()
: for Piecewise exponential distributionss_loglogistic()
: for Log Logistic distributionss_lognormal()
: for Log Normal distributions
See the vignettes for examples on the use on simulation of survival data.