有人可以向我解释与smooth.spline()有关的三个问题。
1°)为什么在smooth.spline中创建的结没有均匀分布?
2°)smooth.spline使用什么类型的样条曲线? 当我比较无约束的smooth.spline(spar = 0)并将其与使用B样条的线性模型(bSpline函数)进行比较时,我的曲线非常接近,但完全相同,参数也有所不同。
3°)如何像从bSpline中获得的那样从smooth.spline中检索样条矩阵?
---数据来自bSpline帮助:人工示例---
y18 <- c(1:3, 5, 4, 7:3, 2*(2:5), rep(10, 4))
data <- data.frame(y18, x=seq(0,1,length=18))
xx <- seq(0, 1, len = 201)
s2 <- smooth.spline(y=data$y18, x=data$x, nknots = 9, spar=0 )
p <- predict(s2, xx)
bsx <- data.frame(bSpline(x=data$x , knots=s2$fit$knot[5:11],
degree=3, intercept = FALSE))
data <- data.frame(data, bsx)
bs100 <- data.frame(bSpline(x=0:100/100, knots=s2$fit$knot[5:11],
degree=3, intercept = FALSE))
bs100 <- data.frame(x=0:100/100, bs100)
lm_y18 <- lm(data=data[,-2], y18 ~ .)
bs100$y <- predict(lm_y18, bs100)
----问题1 ----
s2$fit$knot # I was expecting to have: 1:7/8
diff(s2$fit$knot)
----问题2 ----
ggplot() + geom_point(data=data, aes(x=x, y=y18)) +
geom_line(aes(x=p$x, y=p$y)) +
geom_line(aes(x=p02$x, y=p02$y)) +
geom_line(aes(x=bs100$x, y=bs100$y), color=2) +
scale_x_continuous(labels = scales::percent) +
geom_vline(xintercept=s2$fit$knot, lty=2, color="grey")
cbind(s2$fit$coef,lm_y18$coefficients, s2$fit$coef-lm_y18$coefficients)