作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我现在正在使用 extRemes
包来构建非平稳 GP 模型,我发现很难提取参数。
非平稳尺度参数
library(extRemes)
data(Fort)
fit1 <- fevd(Prec, Fort, threshold=0.395,
scale.fun=~sin(2 * pi * (year - 1900)/365.25) + cos(2 * pi * (year - 1900)/365.25),
type="GP", use.phi=TRUE, verbose=TRUE)
fevd
帮助页面,
log(scale(y)) = phi(y) = phi0 + phi1 * g1(y) + phi2 * g2(y) + ...
phi0
,
phi1
, 和
phi2
从结果来看,但什么是
g1(y)
和
g2(y)
在上面的函数中?
scale.fun
在
fit1
?什么
scale.fun=~sin(2 * pi * (year - 1900)/365.25) + cos(2 * pi * (year - 1900)/365.25)
代表?例如,如果我们使用
scale.fun=~Fort$year
,我们假设
year
对
scale
有线性影响范围。
fit2 <- fevd(Prec, Fort, threshold=0.475, threshold.fun=~I(-0.15 * cos(2 * pi * month / 12)),
type="GP", verbose=TRUE)
fit2
,我们如何计算变化
threshold
值基于
threshold.fun = ~I(-0.15 * cos(2 * pi * month/12))
?谢谢你的帮助。
最佳答案
g1(y) 等是您通过 scale.fun 参数提供给 fevd 的函数。因此,phi0 就像一个截距项,ph1 是 sin(2 * pi * (year - 1900)/365.25) 等的系数。因为您使用了 use.phi = TRUE,所以您的 scale 参数模型估计为: log( scale ) = -0.84 - 0.23 * sin(2 * pi * (year - 1900)/365.25) - 0.25 * cos(2 * pi * (year - 1900)/365.25),你估计的形状参数大约是0.21(如此重尾)。
关于r - 如何从 R 中的非平稳广义帕累托 (GP) 模型中提取参数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52123093/
我是一名优秀的程序员,十分优秀!