trans2UFrechet {ExtremalDep} | R Documentation |
Transformation to unit Frechet distribution
Description
Empirical and parametric transformation of a dataset to unit Frechet marginal distribution
Usage
trans2UFrechet(data, pars, type="Empirical")
Arguments
data |
A vector of length |
pars |
A |
type |
A character string indicating the type of transformation. Can take value |
Details
When type="Empirical"
, the transformation function is where
denotes the empirical cumulative distribution.
When type="GEV"
, the transformation function is if
,
if
. If the argument
pars
is missing then a GEV is fitted on the columns of data
using the fGEV
function.
Value
An object of the same format and dimensions as data
.
Author(s)
Simone Padoan, simone.padoan@unibocconi.it, https://faculty.unibocconi.it/simonepadoan/; Boris Beranger, borisberanger@gmail.com https://www.borisberanger.com;
See Also
Examples
data(MilanPollution)
pars <- fGEV(Milan.winter$PM10)$est
pars
data_uf <- trans2UFrechet(data=Milan.winter$PM10, pars=pars,
type="GEV")
fGEV(data_uf)$est
data_uf2 <- trans2UFrechet(data=Milan.winter$PM10,
type="Empirical")
fGEV(data_uf2)$est