pwe: Piecewise exponential distribution: hazard, cumulative...

View source: R/pwe.R

pweR Documentation

Piecewise exponential distribution: hazard, cumulative hazard, density, distribution, survival

Description

This will provide the related functions of the specified piecewise exponential distribution.

Usage

pwe(t=seq(0,5,by=0.5),rate=c(0,5,0.8),tchange=c(0,3))

Arguments

t

A vector of time points.

rate

A vector of event rates

tchange

A strictly increasing sequence of time points at which the event rate changes. The first element of tchange must be zero. It must have the same length as rate.

Details

Let λ(t)=∑_{j=1}^m λ_j I(t_{j-1}≤ t<t_j) be the hazard function, where λ_1,…,λ_m are the corresponding elements of rate and t_0,…,t_{m-1} are the corresponding elements of tchange, t_m=∞. The cumulative hazard function

Λ(t)=∑_{j=1}^m λ_j(t\wedge t_j-t\wedge t_{j-1}),

the survival function S(t)=\exp\{-Λ(t)\}, the distribution function F(t)=1-S(t) and the density function f(t)=λ(t)S(t).

Value

hazard

Hazard function

cumhazard

Cumulative hazard function

density

Density function

dist

Distribution function

surv

Survival function

Note

Version 1.0 (7/19/2016)

Author(s)

Xiaodong Luo

References

Luo, et al. (2017)

See Also

rpwe,qpwe

Examples

t<-seq(0,3,by=0.1)
rate<-c(0.6,0.3)
tchange<-c(0,1.75)
pwefun<-pwe(t=t,rate=rate,tchange=tchange)
pwefun

marvels2031/PWEALL_1.4.0 documentation built on April 22, 2022, 12:52 a.m.