考虑简单的GAM拟合如下:
library(mgcv)
my.gam <- gam(y~s(x), data=mydata)
答案 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
。
lambda
和sp
:
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