censored_weibull_fit {mevr} | R Documentation |
Finds the optimal left-censoring threshold(s) at which the data series should be censored to make sure that the observations in the tail are likely sampled from a Weibull distribution
censored_weibull_fit(x, thresholds)
x |
A tibble which is most commonly a result of function
|
thresholds |
A numeric or vector of quantiles which shal be tested as optimal threshold for left-censoring. |
A tibble with the optimal threshold itself and the Weibull scale and shape parameters obtained from the censored sample.
data("dailyrainfall")
wbtest <- weibull_tail_test(dailyrainfall)
censored_weibull_fit(wbtest, 0.9)