A wrapper on ssd_hc() that by default calculates
all hazard concentrations from 1 to 99%.
# S3 method for fitdists
predict(
object,
percent,
proportion = 1:99/100,
...,
average = TRUE,
ci = FALSE,
level = 0.95,
nboot = 1000,
min_pboot = 0.95,
est_method = "multi",
ci_method = "weighted_samples",
parametric = TRUE,
delta = 9.21,
control = NULL
)The object.
A numeric vector of percent values to estimate hazard concentrations for. Deprecated for proportion = 0.05.
A numeric vector of proportion values to estimate hazard concentrations for.
Unused.
A flag specifying whether to provide model averaged values as opposed to a value for each distribution.
A flag specifying whether to estimate confidence intervals (by bootstrapping).
A number between 0 and 1 of the confidence level of the interval.
A count of the number of bootstrap samples to use to estimate the confidence limits. A value of 10,000 is recommended for official guidelines.
A number between 0 and 1 of the minimum proportion of bootstrap samples that must successfully fit (return a likelihood) to report the confidence intervals.
A string specifying whether to estimate directly from
the model-averaged cumulative distribution function (est_method = 'multi') or
to take the arithmetic mean of the estimates from the
individual cumulative distribution functions weighted
by the AICc derived weights (est_method = 'arithmetic') or
or to use the geometric mean instead (est_method = 'geometric').
A string specifying which method to use for estimating
the standard error and confidence limits from the bootstrap samples.
The default and recommended value is still ci_method = "weighted_samples"
which takes bootstrap samples
from each distribution proportional to its AICc based weights and
calculates the confidence limits (and SE) from this single set.
ci_method = "multi_fixed" and ci_method = "multi_free"
generate the bootstrap samples using the model-averaged cumulative distribution function
but differ in whether the model weights are fixed at the values for the original dataset
or re-estimated for each bootstrap sample dataset.
The value ci_method = "MACL" (was ci_method = "weighted_arithmetic"), which is only included for
historical reasons, takes the weighted arithmetic mean of the confidence
limits while ci_method = GMACL which
takes the weighted geometric mean of the confidence limits was added for completeness but is also not recommended.
Finally ci_method = "arithmetic_samples" and ci_method = "geometric_samples"
take the weighted arithmetic or geometric mean of the values for
each bootstrap iteration across all the distributions and then
calculate the confidence limits (and SE) from the single set of samples.
A flag specifying whether to perform parametric bootstrapping as opposed to non-parametrically resampling the original data with replacement.
A non-negative number specifying the maximum absolute AIC difference cutoff. Distributions with an absolute AIC difference greater than delta are excluded from the calculations.
A list of control parameters passed to stats::optim().
It is useful for plotting purposes.
ssd_hc() and ssd_plot()
fits <- ssd_fit_dists(ssddata::ccme_boron)
predict(fits)
Run the code above in your browser using DataLab