ssd_hc | R Documentation |
Calculates concentration(s) with bootstrap confidence intervals that protect specified proportion(s) of species for individual or model-averaged distributions using parametric or non-parametric bootstrapping.
ssd_hc(x, ...)
## S3 method for class 'list'
ssd_hc(x, percent, proportion = 0.05, ...)
## S3 method for class 'fitdists'
ssd_hc(
x,
percent,
proportion = 0.05,
average = TRUE,
ci = FALSE,
level = 0.95,
nboot = 1000,
min_pboot = 0.95,
multi_est = TRUE,
ci_method = "weighted_samples",
parametric = TRUE,
delta = 9.21,
samples = FALSE,
save_to = NULL,
control = NULL,
...
)
## S3 method for class 'fitburrlioz'
ssd_hc(
x,
percent,
proportion = 0.05,
ci = FALSE,
level = 0.95,
nboot = 1000,
min_pboot = 0.95,
parametric = FALSE,
samples = FALSE,
save_to = NULL,
...
)
Model-averaged estimates and/or confidence intervals (including standard error)
can be calculated by treating the distributions as
constituting a single mixture distribution
versus 'taking the mean'.
When calculating the model averaged estimates treating the
distributions as constituting a single mixture distribution
ensures that ssd_hc()
is the inverse of ssd_hp()
.
If treating the distributions as constituting a single mixture distribution
when calculating model average confidence intervals then
weighted
specifies whether to use the original model weights versus
re-estimating for each bootstrap sample unless 'taking the mean' in which case
weighted
specifies
whether to take bootstrap samples from each distribution proportional to
its weight (so that they sum to nboot
) versus
calculating the weighted arithmetic means of the lower
and upper confidence limits based on nboot
samples for each distribution.
Distributions with an absolute AIC difference greater than a delta of by default 7 have considerably less support (weight < 0.01) and are excluded prior to calculation of the hazard concentrations to reduce the run time.
A tibble of corresponding hazard concentrations.
ssd_hc(list)
: Hazard Concentrations for Distributional Estimates
ssd_hc(fitdists)
: Hazard Concentrations for fitdists Object
ssd_hc(fitburrlioz)
: Hazard Concentrations for fitburrlioz Object
Burnham, K.P., and Anderson, D.R. 2002. Model Selection and Multimodel Inference. Springer New York, New York, NY. doi:10.1007/b97636.
predict.fitdists()
and ssd_hp()
.
ssd_hc(ssd_match_moments())
fits <- ssd_fit_dists(ssddata::ccme_boron)
ssd_hc(fits)
fit <- ssd_fit_burrlioz(ssddata::ccme_boron)
ssd_hc(fit)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.