gev2frech(SpatialExtremes)
gev2frech()所属R语言包:SpatialExtremes
Transforms GEV data to unit Frechet ones and vice versa
GEV数据转换单元导数的,反之亦然
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Transforms GEV data to unit Frechet ones and vice versa
GEV数据转换单元导数的,反之亦然
用法----------Usage----------
gev2frech(x, loc, scale, shape, emp = FALSE)
frech2gev(x, loc, scale, shape)
参数----------Arguments----------
参数:x
The data to be transformed to unit Frechet or ordinary GEV margins
的数据被变换为单元的Frechet可或普通GEV边距
参数:loc, scale, shape
The location, scale and shape parameters of the GEV.
的位置,大小和形状参数的GEV。
参数:emp
Logical. If TRUE, data are transformed to unit Frechet margins using the empirical CDF.
逻辑。如果TRUE,数据被转换为使用单位的Frechet空间的经验CDF。
Details
详细信息----------Details----------
If Y is a random variable with a GEV distribution with location μ, scale σ and shape ξ. Then,
如果Y是一个GEV分布的随机变量的位置μ,规模σ和形状ξ。然后,
is unit Frechet distributed - where x_+ = max(0, x).
单位的Frechet分布 - 在x_+ = max(0, x)。
If Z is a unit Frechet random variable. Then,
如果Z是一个单元导数的随机变量。然后,
is unit GEV distributed with location, scale and shape parameters equal to μ, σ and ξ respectively.
单位GEV分布位置,规模和形状参数等于μ,σ和ξ分别。
值----------Value----------
Returns a numeric vector with the same length of x
返回一个数值向量具有相同长度的x
(作者)----------Author(s)----------
Mathieu Ribatet
实例----------Examples----------
x <- c(2.2975896, 1.6448808, 1.3323833, -0.4464904, 2.2737603,
-0.2581876, 9.5184398, -0.5899699, 0.4974283, -0.8152157)
y <- gev2frech(x, 1, 2, .2)
y
frech2gev(y, 1, 2, .2)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|