| cEPD | R Documentation | 
Computes the EPD estimates adapted for right censored data.
cEPD(data, censored, rho = -1, beta = NULL, logk = FALSE, 
     plot = FALSE, add = FALSE, main = "EPD estimates of the EVI", ...)
| data | Vector of  | 
| censored | A logical vector of length  | 
| rho | A parameter for the  | 
| beta | Parameter for EPD ( | 
| logk | Logical indicating if the estimates are plotted as a function of  | 
| plot | Logical indicating if the estimates of  | 
| add | Logical indicating if the estimates of  | 
| main | Title for the plot, default is  | 
| ... | Additional arguments for the  | 
The function EPD uses \tau which is equal to -\beta.
This estimator is only suitable for right censored data.
A list with following components:
| k | Vector of the values of the tail parameter  | 
| gamma1 | Vector of the corresponding estimates for the  | 
| kappa1 | Vector of the corresponding MLE estimates for the  | 
| beta | Vector of estimates for (or values of) the  | 
| Delta | Difference between  | 
Tom Reynkens based on R code from Anastasios Bardoutsos.
Beirlant, J., Bardoutsos, A., de Wet, T. and Gijbels, I. (2016). "Bias Reduced Tail Estimation for Censored Pareto Type Distributions." Statistics & Probability Letters, 109, 78–88.
Fraga Alves, M.I. , Gomes, M.I. and de Haan, L. (2003). "A New Class of Semi-parametric Estimators of the Second Order Parameter." Portugaliae Mathematica, 60, 193–214.
EPD, cProbEPD, cGPDmle
# Set seed
set.seed(29072016)
# Pareto random sample
X <- rpareto(500, shape=2)
# Censoring variable
Y <- rpareto(500, shape=1)
# Observed sample
Z <- pmin(X, Y)
# Censoring indicator
censored <- (X>Y)
# EPD estimator adapted for right censoring
cepd <- cEPD(Z, censored=censored, plot=TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.