This package implements A-Spline regression, an adaptive procedure for fitting splines with automatic selection of the knots. One-dimentional B-Splines of any non-negative degree can be fitted. This method uses a penalization approach to compensate overfitting. The penalty is proportional to the number of knots used to support the regression spline. Consequently, the fitted splines will have knots only where necessary and the fitted model is sparser than comparable penalized spline regressions (for instance the standard method for penalized splines: P-splines).
You can install the development version from GitHub with:
# install.packages("devtools")
::install_github("goepp/aspline") devtools
Below is an illustration of the A-spline procedure using the helmet data. The thick line represents the fitted spline and the thin line represents the B-spline basis decomposition of the fitted curve.
library(aspline)
library(tidyverse)
#> ── Attaching packages ─────────────────────────────────────── tidyverse 1.3.1 ──
#> ✓ ggplot2 3.3.3 ✓ purrr 0.3.4
#> ✓ tibble 3.1.2 ✓ dplyr 1.0.5
#> ✓ tidyr 1.1.3 ✓ stringr 1.4.0
#> ✓ readr 1.4.0 ✓ forcats 0.5.1
#> ── Conflicts ────────────────────────────────────────── tidyverse_conflicts() ──
#> x dplyr::filter() masks stats::filter()
#> x dplyr::lag() masks stats::lag()
library(splines2)
data(helmet)
<- helmet$x
x <- helmet$y
y <- 40
k <- seq(min(x), max(x), length = k + 2)[-c(1, k + 2)]
knots <- 3
degree <- 10 ^ seq(-4, 4, 0.25)
pen <- seq(min(x), max(x), length = 1000)
x_seq <- aspline(x, y, knots, pen, degree = degree)
aridge #> Warning: `data_frame()` was deprecated in tibble 1.1.0.
#> Please use `tibble()` instead.
<- lm(y ~ bSpline(x, knots = aridge$knots_sel[[which.min(aridge$ebic)]],
a_fit degree = degree))
<- bSpline(x_seq, knots = aridge$knots_sel[[which.min(aridge$ebic)]],
X_seq intercept = TRUE, degree = degree)
<- (X_seq %*% diag(coef(a_fit))) %>%
a_basis as.data.frame() %>%
mutate(x = x_seq) %>%
::melt(id.vars = "x", variable.name = "spline_n", value.name = "y") %>%
reshape2as_tibble() %>%
filter(y != 0)
<- data_frame(x = x_seq, pred = predict(a_fit, data.frame(x = x_seq)))
a_predict ggplot() +
geom_point(data = helmet, aes(x, y), shape = 1) +
geom_line(data = a_predict, aes(x, pred), size = 0.5) +
geom_line(data = a_basis, aes(x, y, group = spline_n), linetype = 1, size = 0.1) +
theme(legend.position = "none") +
ylab("") +
xlab("")
For the sake of comparision, we display here the estimated P-spline with the same data. The thin lines also represent the B-spline basis decomposition.
<- mgcv::gam(y ~ s(x, bs = "ps", k = length(knots) + 3 + 1, m = c(3, 2)))
p_fit <- bSpline(x_seq, knots = knots, intercept = TRUE)
X <- (X %*% diag(coef(p_fit))) %>%
p_basis as.data.frame() %>%
mutate(x = x_seq) %>%
::melt(id.vars = "x", variable.name = "spline_n", value.name = "y") %>%
reshape2as_tibble() %>%
filter(y != 0)
<- data_frame(x = x_seq, pred = predict(p_fit, data.frame(x = x_seq)))
p_predict ggplot() +
geom_point(data = helmet, aes(x, y), shape = 1) +
geom_line(data = p_predict, aes(x, pred), size = 0.5) +
geom_line(data = p_basis, aes(x, y, group = spline_n), linetype = 1, size = 0.1) +
theme(legend.position = "none") +
ylab("") + xlab("")
If you encounter a bug or have a suggestion for improvement, please raise an issue or make a pull request.
This package is released under the GPLv3 License: see the
LICENSE
file or the online text. In
short,
you can use, modify, and distribute (including for commerical use) this
package, with the notable obligations to use the GPLv3 license for your
work and to provide a copy of the present source code.