mgcv:如何返回估计的平滑参数?

时间:2016-07-28 19:15:14

标签: r gam mgcv

考虑简单的GAM拟合如下:

library(mgcv)
my.gam <- gam(y~s(x), data=mydata)
  1. 无论如何都要返回估计的平滑参数(lambda)以便我可以保存它吗?我知道lambda在输出中被给出为&#39; GCV得分&#39;但是我需要一个特定的代码来返回它。
  2. 如何将lambda设置为所需的值?

1 个答案:

答案 0 :(得分:1)

summary()不返回平滑参数。您已将GCV得分与平滑参数混淆。如果您不理解这些概念,请咨询当地统计员,或者就Cross Validated提出问题。我只会告诉你如何提取和设置平滑参数。

考虑一个例子:

library(mgcv)
set.seed(2)
dat <- gamSim(1, n=400, dist="normal", scale=2)
b <- gam(y ~ s(x0) + s(x1) + s(x2) + s(x3), data=dat)

您可以从

获取内部平滑参数
b$sp
#       s(x0)        s(x1)        s(x2)        s(x3) 
#3.648590e+00 3.850127e+00 1.252710e-02 4.986399e+10 

但这些不是lambda。它们与lambda的区别在于一些积极的缩放因子。使用sp来平滑参数通常就足够了。如果要将其设置为固定值,请执行以下操作:

b1 <- gam(y ~ s(x0, sp = 0) + s(x1, sp = 0) + s(x2, sp = 0) + s(x3, sp = 0),
          data = dat)

这基本上禁止对所有平滑术语的惩罚。请注意,将sp设置为负值意味着自动选择sp

lambdasp

enter image description here

sapply(b$smooth, "[[", "S.scale") / b$sp
#       s(x0)        s(x1)        s(x2)        s(x3) 
#6.545005e+00 5.326938e+00 1.490702e+03 4.097379e-10 

有时候获得lambda是必要的。当将平滑函数视为随机效应或随机字段时,有

variance_parameter_of_random_effect = scale_parameter / lambda

其中scale参数可以在b$scale中找到(对于高斯模型,这也是b$sig2)。请参阅相关问题:GAM with "gp" smoother: how to retrieve the variogram parameters?

<强>后续

  

是的,我需要lambda的确切值,所以感谢整洁的代码。然而,我有兴趣了解更多有关比例因子的信息。除了包装手册外,我还可以在哪里阅读更多相关信息?

阅读?smoothCon

smoothCon(object,data,knots=NULL,absorb.cons=FALSE,
          scale.penalty=TRUE,n=nrow(data),dataX=NULL,
          null.space.penalty=FALSE,sparse.cons=0,
          diagonal.penalty=FALSE,apply.by=TRUE,modCon=0)

scale.penalty: should the penalty coefficient matrix be scaled to have
          approximately the same 'size' as the inner product of the
          terms model matrix with itself? ...

smoothCon的源代码中,有:

if (scale.penalty && length(sm$S) > 0 && is.null(sm$no.rescale)) {
    maXX <- norm(sm$X, type = "I")^2
    for (i in 1:length(sm$S)) {
        maS <- norm(sm$S[[i]])/maXX
        sm$S[[i]] <- sm$S[[i]]/maS
        sm$S.scale[i] <- maS
    }
}

简而言之,对于模型矩阵X和原始惩罚矩阵S,缩放因子maS为:

norm(S) / norm(X, type = "I")^2