qpwu | R Documentation |
This will provide the quantile function of the specified piecewise uniform distribution
qpwu(p=seq(0,1,by=0.1),u=c(0,5,0.5),ut=c(1,2))
p |
a vector of probabilities |
u |
piecewise constant density |
ut |
time points at which event rate changes. This must be an strictly increasing sequence. |
Let f(t)=∑_{j=1}^m u_j I(t_{j-1}<t≤ t_j) be the density function, where u_1,…,u_m are the corresponding elements of u and t_1,…,t_{m} are the corresponding elements of ut and t_0=0. The distribution function
F(t)=∑_{j=1}^m u_j(t\wedge t_j-t\wedge t_{j-1}).
User must make sure that ∑_{j=1}^m u_j (t_j-t_{j-1})=1 before using this function.
q |
quantiles |
This provides the quantile function related to the piecewise uniform distribution
Xiaodong Luo
Luo, et al. (2017)
piecewise uniform
p<-seq(0,1,by=0.1) u<-c(0.6,0.4) ut<-c(1,2) pwuq<-qpwu(p=p,u=u,ut=ut) pwuq
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.