trans2UFrechet | R Documentation |
Empirical and parametric transformation of a dataset to unit Frechet marginal distribution.
trans2UFrechet(data, pars, type = "Empirical")
data |
A vector of length |
pars |
A |
type |
A character string indicating the type of transformation. Can be |
When type = "Empirical"
, the transformation is
t(x) = -1 / \log(F_{\textrm{emp}}(x))
where F_{\textrm{emp}}(x)
denotes the empirical cumulative distribution function.
When type = "GEV"
, the transformation is
\left(1 + \xi \frac{x-\mu}{\sigma}\right)^{1/\xi}
if \xi \neq 0
, and
\sigma / (x-\mu)
if \xi = 0
. If pars
is missing, a GEV is fitted on the columns of data
using the fGEV
function.
An object of the same format and dimensions as data
.
Simone Padoan, simone.padoan@unibocconi.it, https://faculty.unibocconi.it/simonepadoan/; Boris Beranger, borisberanger@gmail.com, https://www.borisberanger.com;
trans2GEV
, fGEV
data(MilanPollution)
pars <- fGEV(Milan.winter$PM10)$est
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
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.