subset.fitdists {ssdtools} | R Documentation |
Subset fitdists Object
Description
Select a subset of distributions from a fitdists object. The Akaike Information-theoretic Criterion differences are calculated after selecting the distributions named in select.
Usage
## S3 method for class 'fitdists'
subset(x, select = names(x), delta = Inf, ...)
Arguments
x |
The object. |
select |
A character vector of the distributions to select. |
delta |
A non-negative number specifying the maximum absolute Akaike Information-theoretic Criterion difference cutoff. Distributions with an absolute difference from the best model greater than the cutoff are excluded. |
... |
Unused. |
Examples
fits <- ssd_fit_dists(ssddata::ccme_boron)
subset(fits, c("gamma", "lnorm"))
[Package ssdtools version 1.0.6 Index]