我打算将钳位 b 样条拟合到 R 中的一组控制点,但在理解knots
bs 中参数的使用时遇到了困难。给定一组控制点:
path <- data.frame(
x = c(3, 3.5, 4.6875, 9.625, 5.5625, 19.62109375, 33.6796875, 40.546875, 36.59375, 34.5, 33.5, 33),
y = c(0, 1, 4, 5, 6, 8, 7, 6, 5, 2, 1, 0)
)
我根据路径的距离独立地拟合 x 和 y:
path$distance <- c(0, cumsum(sqrt(diff(path[,1])^2 + diff(path[,2])^2)))
path$distance
## [1] 0.000000 1.118034 4.344511 9.382259 13.566026 27.766169 41.860284 48.799899 52.877545 56.535931 57.950145
## [12] 59.068179
但我想提供一个开放的统一节点向量,以便将拟合锚定到第一个和最后一个点 - 使用df
不支持这一点。
据我了解,对于我给定的一组点,以及样条曲线的 3 度,必须有(12-1)+3+2 = 16
结(每 m=n+p+1,对于#knots=m+1,#control=n+1, degree=p),所以对于一个钳位样条,这应该是一个很好的节点向量:
knots <- seq(path$distance[1], path$distance[12], length.out = 10)
knots <- c(rep(knots[1], 3), knots, rep(knots[10], 3))
knots
## [1] 0.000000 0.000000 0.000000 0.000000 6.563131 13.126262 19.689393 26.252524 32.815655
## [10] 39.378786 45.941917 52.505048 59.068179 59.068179 59.068179 59.068179
使用它会给出一些疯狂的数字,以及关于排名不足的警告,所以很明显我一定是在某种程度上弄错了:
pred_df <- data.frame(x=0,y=0,distance=seq(min(path$distance), max(path$distance), length.out=100))
xPath <- predict(lm(x~bs(distance, knots=knots, degree = 3), path), pred_df)
## Warning message:
## In predict.lm(lm(x ~ bs(distance, knots = knots, degree = degree), :
## prediction from a rank-deficient fit may be misleading
summary(xPath)
## Min. 1st Qu. Median Mean 3rd Qu. Max.
## -2133.000 3.468 16.700 -161.900 64.590 857.800
给定一组控制点和度数,指定节点向量的正确方法是什么?