我想清楚一点,并在各行中使用::
表示法来拟合mgcv::gam
。在模型调用mgcv::s
中使用表示法时,我偶然发现了一件事情。带有可复制示例/错误的代码如下所示。
原因可能是因为我在模型公式中使用了这种表示法,但是我无法弄清楚为什么它不起作用/不允许这样做。这可能是关于语法的非常具体的内容(我想可能不是特定于mgcv的东西),但是也许有人可以帮助我理解这一点以及我对R的理解。
library(mgcv)
dat <- data.frame(x = 1:10, y = 101:110)
# this results in an error: invalid type (list)...
mgcv::gam(y ~ mgcv::s(x, bs = "cs", k = -1), data = dat)
# after removing the mgcv:: in front of s everything works fine
mgcv::gam(y ~ s(x, bs = "cs", k = -1), data = dat)
# outside of the model call, both calls return the desired function
class(s)
# [1] "function"
class(mgcv::s)
# [1] "function"
答案 0 :(得分:4)
说明
library(mgcv)
#Loading required package: nlme
#This is mgcv 1.8-24. For overview type 'help("mgcv-package")'.
f1 <- ~ s(x, bs = 'cr', k = -1)
f2 <- ~ mgcv::s(x, bs = 'cr', k = -1)
OK <- mgcv:::interpret.gam0(f1)$smooth.spec
FAIL <- mgcv:::interpret.gam0(f2)$smooth.spec
str(OK)
# $ :List of 10
# ..$ term : chr "x"
# ..$ bs.dim : num -1
# ..$ fixed : logi FALSE
# ..$ dim : int 1
# ..$ p.order: logi NA
# ..$ by : chr "NA"
# ..$ label : chr "s(x)"
# ..$ xt : NULL
# ..$ id : NULL
# ..$ sp : NULL
# ..- attr(*, "class")= chr "cr.smooth.spec"
str(FAIL)
# list()
interpret.gam0
源代码的第四行揭示了该问题:
head(mgcv:::interpret.gam0)
1 function (gf, textra = NULL, extra.special = NULL)
2 {
3 p.env <- environment(gf)
4 tf <- terms.formula(gf, specials = c("s", "te", "ti", "t2",
5 extra.special))
6 terms <- attr(tf, "term.labels")
由于"mgcv::s"
不匹配,您遇到了问题。但是mgcv
确实为您提供了解决此问题的空间,方法是通过参数"mgcv::s"
传递extra.special
:
FIX <- mgcv:::interpret.gam0(f, extra.special = "mgcv::s")$smooth.spec
all.equal(FIX, OK)
# [1] TRUE
在高级例程中这不是用户可控制的:
head(mgcv::gam, n = 10)
#1 function (formula, family = gaussian(), data = list(), weights = NULL,
#2 subset = NULL, na.action, offset = NULL, method = "GCV.Cp",
#3 optimizer = c("outer", "newton"), control = list(), scale = 0,
#4 select = FALSE, knots = NULL, sp = NULL, min.sp = NULL, H = NULL,
#5 gamma = 1, fit = TRUE, paraPen = NULL, G = NULL, in.out = NULL,
#6 drop.unused.levels = TRUE, drop.intercept = NULL, ...)
#7 {
#8 control <- do.call("gam.control", control)
#9 if (is.null(G)) {
#10 gp <- interpret.gam(formula) ## <- default to extra.special = NULL
我同意本博克的观点。找出内部发生的事情是一个很好的练习,但是将其视为错误并修复它是一种过度反应。
更多见解:
s
中的{p} te
,mgcv
等与stats::poly
和splines::bs
的逻辑不同。
X <- splines::bs(x, df = 10, degree = 3)
会评估 x
并直接创建设计矩阵X
。s(x, bs = 'cr', k = 10)
时,不会进行评估;它被解析。 mgcv
中平滑的构建过程分为几个阶段:
mgcv::interpret.gam
进行解析/解释,从而生成更平滑的轮廓; mgcv::smooth.construct
进行的初始构造,它建立了基础/设计矩阵和惩罚矩阵(主要在C级完成); mgcv::smoothCon
进行的二次构造,它提取“ by”变量(例如,对因子“ by”进行平滑复制),线性函数项,空空间罚分(如果使用select = TRUE
),罚款调整比例,居中限制等; mgcv:::gam.setup
进行的所以,这是一个复杂得多的过程。
答案 1 :(得分:2)
这看起来像一个mgcv
问题。例如,lm()
函数接受poly()
或stats::poly()
并给出相同的结果(事物名称除外):
> x <- 1:100
> y <- rnorm(100)
> lm(y ~ poly(x, 3))
Call:
lm(formula = y ~ poly(x, 3))
Coefficients:
(Intercept) poly(x, 3)1 poly(x, 3)2 poly(x, 3)3
0.07074 0.13631 -1.52845 -0.93285
> lm(y ~ stats::poly(x, 3))
Call:
lm(formula = y ~ stats::poly(x, 3))
Coefficients:
(Intercept) stats::poly(x, 3)1 stats::poly(x, 3)2 stats::poly(x, 3)3
0.07074 0.13631 -1.52845 -0.93285
它还可以与splines::bs
函数一起使用,因此它并不特定于poly()
。
您应该与mgcv
维护人员联系,并在该软件包中指出此错误。我猜想它专门针对s
,而不是像mgcv::s
这样的表达式,它的计算结果相同。