Description Usage Arguments Details Value Note Author(s) References See Also Examples
Proposed in Chapter 5 of Liu (2012). The original data set will be bootstrapped to obtain an estimate of the mean squared error of the quantile estimates, such that quantile estimates under different subjective censoring thresholds could be compared. We could also obtain the standard error of quantile estimates via bootstrap.
1 2 | bootstrapCMLE(dat, qInt = 0.05, canSet = seq(0.1, 0.5, by = 0.1),
B = 5000, randSeed = NULL, conCr = 1e-09, nIter = 1000)
|
dat |
A complete data set without censoring. See |
qInt |
The quantile of interest, e.g. 5% quantile or 10% quantile. |
canSet |
A vector of the candidate subjective censoring thresholds, expressed as the proportion of data smaller it, e.g. 10%, 20%, ..., 100% (non-censoring) |
B |
Number of bootstrap replicate data sets |
randSeed |
The seed for random number generation. If NULL, the random seed will not be set |
conCr |
Convergence criterion for the algorithm to calculate the censored Weibull MLE. See |
nIter |
See |
This function is designed to only work for a complete data set where every observation is fully observed (non-censoring). We could decide the best threshold (proportion) of subjective censoring based on bootstrap. For the advantage of subjective censoring, please see Liu (2012).
This function will call C to do all calculations. So it is recommended that the user should make sure the cenWbMLE.T2
could work for their original data set.
results |
A matrix of length( |
bQEst |
A matrix of B-by-length( |
Please report the numerical problems and inconvenience when using this function to the author.
Yang (Seagle) Liu <yang.liu@stat.ubc.ca>
Liu Y. (2012). Lower Quantile Estimation of Wood Strength Data. Master Thesis, Department of Statistics, UBC. Downloadable here.
1 2 3 4 | set.seed(1)
y <- sort(rweibull(100, 7, 7))
tlist <- bootstrapCMLE(y, B=1000, canSet=c(0.1, 0.5, 1), randSeed=1)
tlist$results #Usually, we only need to look at the results part.
|
Censor.Prop Shape.Est Scale.Est Quantile.Est Bootstrap.SE Boostrap.RMSE
[1,] 0.1 10.831609 6.463398 4.913270 0.1894784 0.1994089
[2,] 0.5 7.785556 6.955397 4.749395 0.1690085 0.2572608
[3,] 1.0 7.887145 6.916031 4.745777 0.1569719 0.2812737
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.