Description Usage Arguments Details Value See Also Examples
Fit Frechet distribution to non-censored data
1 2 3 |
x |
numeric vector |
method |
fitting method, argument passed to
|
min_shape |
numeric value restricting the minimum shape
otherwise output is set to |
order, central, absolute, na.rm |
arguments passed to
|
verbose |
logical indicating whether to print verbose output. |
... |
additional arguments are passed to
|
param_fr_wei |
|
This function is a simple wrapper around fitdistrplus::fitdist()
for the Frechet distribution, using "actuar::dinvweibull"
.
Most customizations are performed by the corresponding
support function, for example when method="mme"
the
distribution fit function is fitdistrplus::mmedist()
,
which then calls stats::optim()
. Arguments are
passed to these functions using ...
where applicable.
object of class "fitdist"
described in
fitdistrplus::fitdist()
. If any error occurs during
the fit, a NULL
is returned.
Other SALSA distribution fit functions: dfr_wei
,
fitdist_fr_wei
, params_fr_wei
1 2 3 4 5 | data(oz2_numi_per_cell);
x <- oz2_numi_per_cell$count[oz2_numi_per_cell$count >= 16];
fit_fr <- fitdist_fr(x);
# print coefficients
print(coef(fit_fr));
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.