Tensor Products of B-Splines, Control Nets, and Control Net Reduction

library(cpr)
packageVersion("cpr")
## [1] '0.4.0.9000'

The control polygon reduction methods for uni-variable functions can be extended to multi-variable functions by generalizing control polygons to control nets.

Tensor Products of B-Splines

Where uni-variable functions of B-splines:

we extend to multi-variable m-dimensional B-spline function, built on m B-spline basis matrices Bk1, ξ1(x1), Bk2, ξ2(x2), …, Bkm, ξm(xm), as

where K = {k1, k2, …, km}, denotes the set of polynomial orders, Ξ = {ξ1, ξ2, …, ξm} is the set of knot sequences, and θΞ is a $\prod_{i = 1}^{m} \left( \left\lvert \boldsymbol{\xi}_i \right\rvert - k_i \right) \times 1$ column vector of regression coefficients, and X is the observed data:

The basis for multi-variable B-splines is constructed by a recursive algorithm. The base case for m = 2 is where is the element-wise product, is a Kronecker product, and 1n is a n × 1 column vector of 1s. The two Kronecker products define the correct dimensions for the entry-wise product. The tensor product matrix has the same number of rows as the two input matrices and the columns are generated by all the pairwise products of the columns of the two input matrices. The general case for m > 2, the matrix K, Ξ(X) is defined by

It is possible to write the above as a set of summations: This is critical in the extension from the uni-variable control polygon reduction method to the multi-variable control polygon reduction method. By conditioning on m − 1 marginals, the multi-variable B-spline becomes a uni-variable B-spline in terms of the mth marginal. Thus, the metrics and methods of control polygon reduction can be applied.

Control Nets

For multi-variable B-splines, a meaningful geometric relationship between the set of knot sequences, Ξ, and regression coefficients, θΞ, is provided by a control net. A control net for m = 2 variables would be:

Building a control net in the cpr package is done by calling the cn function after defining a basis via the btensor method.

Define a tensor product of B-splines by providing a list of vectors, iknots, bknots, and orders.

tpmat <-
  btensor(x = list(x1 = runif(51), x2 = runif(51)),
          iknots = list(numeric(0), c(0.418, 0.582, 0.676, 0.840)),
          bknots = list(c(0, 1), c(0, 1)),
          order = list(3, 4))
tpmat
## Tensor Product Matrix dims: [51 x 24]

An example of a control net and the surface it produces:

theta <-
  c(-0.03760,  0.03760, -0.03760,  0.77579, -0.84546,  0.63644, -0.87674,
     0.71007, -1.21007,  0.29655, -0.57582, -0.26198,  0.23632, -0.58583,
    -0.46271, -0.39724, -0.02194, -1.23562, -0.19377, -0.27948, -1.14028,
     0.00405, -0.50405, -0.99595)

acn <- cn(tpmat, theta)
par(mfrow = c(1, 2))
plot(acn, rgl = FALSE, xlab = "x1", ylab = "x2", zlab = "control net", clim = c(-1.2, 0.3), colkey = FALSE)
plot(acn, rgl = FALSE, show_net = FALSE, show_surface = TRUE, xlab = "x1", ylab = "x2", zlab = "surface", clim = c(-1.2, 0.3))

Control Net Reduction

Similar to control polygon reduction (CPR), control net reduction (CNR) looks assesses the influence of each internal knot, omits the least influential, refits the model, and repeats. A complication for CNR is that the influence of an internal knot on margin m is a function of the locations values of x on the other margins defining the polynomial coefficients. We suggest using a set of p = 20 values on each margin for assessment.

For example in a two-variable tensor product, the influence weight of the jth internal knot for the first margin is

w1j = maxx2 ∈ Uw1j|x2, where $$\boldsymbol{U} = \left\{ u : \min\left(x_2\right) + \frac{\left\{1,2,\ldots,p\right\}}{p+1} \left( \max\left(x_2\right) - \min\left(x_2\right)\right) \right\} $$

For example:

f <- function(x1, x2) {(x1 - 0.5)^2 * sin(4 * pi * x2) - x1 * x2}
set.seed(42)
cn_data <- expand.grid(x1 = sort(runif(100)), x2 = sort(runif(100)))
cn_data <- within(cn_data, {z = f(x1, x2)})
initial_cn <-
  cn(z ~ btensor(x        = list(x1, x2)
                 , iknots = list(c(0.234), c(0.418, 0.582, 0.676, 0.840))
                 , bknots = list(c(0, 1), c(0, 1))
                 , order  = list(3, 4)
                 )
     , data = cn_data)

influence_of_iknots(initial_cn)
## [[1]]
##         xi_4 
## 5.282465e-32 
## 
## [[2]]
##        xi_5        xi_6        xi_7        xi_8 
## 0.717424005 0.045575415 0.006775287 0.012875249 
## 
## attr(,"class")
## [1] "cpr_influence_of_iknots_cpn" "list"

The least influential knot is ξ1, 4 and the most influential knot is ξ2, 5.

cn1 <- update_btensor(initial_cn, iknots = list(numeric(0), c(0.418, 0.582, 0.676, 0.840)))
cn2 <- update_btensor(initial_cn, iknots = list(numeric(0.234), c(0.582, 0.676, 0.840)))
par(mfrow = c(1, 3))
plot(initial_cn, rgl = FALSE, show_surface = TRUE, show_net = FALSE, colkey = FALSE, clim = c(-1.2, 0.3), main = "Original")
plot(cn1,        rgl = FALSE, show_surface = TRUE, show_net = FALSE, colkey = FALSE, clim = c(-1.2, 0.3), main = bquote(Omitting~xi[1,1]))
plot(cn2,        rgl = FALSE, show_surface = TRUE, show_net = FALSE, colkey = FALSE, clim = c(-1.2, 0.3), main = bquote(Omitting~xi[2,1]))

A call to cnr runs the full CNR algorithm on an initial control net.

cnr0 <- cnr(initial_cn)
##   |                                                                              |                                                                      |   0%  |                                                                              |============                                                          |  17%  |                                                                              |=======================                                               |  33%  |                                                                              |===================================                                   |  50%  |                                                                              |===============================================                       |  67%  |                                                                              |==========================================================            |  83%  |                                                                              |======================================================================| 100%
summary(cnr0)
##   dfs   loglik        rss         rse n_iknots1 iknots1 n_iknots2      iknots2
## 1  12 12396.78 49.0631393 0.070087150         0                 0             
## 2  15 12408.53 48.9479832 0.070015367         0                 1        0.582
## 3  18 36554.82  0.3912139 0.006260346         0                 2 0.418, 0.582
## 4  21 36559.88  0.3908179 0.006258118         0                 3 0.418, 0....
## 5  24 38449.23  0.2678356 0.005181505         0                 4 0.418, 0....
## 6  32 38449.23  0.2678356 0.005183584         1   0.234         4 0.418, 0....
##   index
## 1     1
## 2     2
## 3     3
## 4     4
## 5     5
## 6     6
plot(cnr0)

The plot of the residual standard errors by index shows index 3 is the preferable model. We can look at all the surfaces and see there is little difference from the original (index 6) through index 3 with considerable differences in the surfaces for index 1 and 2.

par(mfrow = c(2, 3))
plot(cnr0[[1]], rgl = FALSE, show_surface = TRUE, show_net = FALSE, clim = c(-1.2, 0.3), main = "Index 1", colkey = FALSE)
plot(cnr0[[2]], rgl = FALSE, show_surface = TRUE, show_net = FALSE, clim = c(-1.2, 0.3), main = "Index 2", colkey = FALSE)
plot(cnr0[[3]], rgl = FALSE, show_surface = TRUE, show_net = FALSE, clim = c(-1.2, 0.3), main = "Index 3", colkey = FALSE)
plot(cnr0[[4]], rgl = FALSE, show_surface = TRUE, show_net = FALSE, clim = c(-1.2, 0.3), main = "Index 4", colkey = FALSE)
plot(cnr0[[5]], rgl = FALSE, show_surface = TRUE, show_net = FALSE, clim = c(-1.2, 0.3), main = "Index 5", colkey = FALSE)
plot(cnr0[[6]], rgl = FALSE, show_surface = TRUE, show_net = FALSE, clim = c(-1.2, 0.3), main = "Index 6", colkey = FALSE)

References

Session Info

sessionInfo()
## R version 4.4.1 (2024-06-14)
## Platform: x86_64-pc-linux-gnu
## Running under: Ubuntu 24.04.1 LTS
## 
## Matrix products: default
## BLAS:   /usr/lib/x86_64-linux-gnu/openblas-pthread/libblas.so.3 
## LAPACK: /usr/lib/x86_64-linux-gnu/openblas-pthread/libopenblasp-r0.3.26.so;  LAPACK version 3.12.0
## 
## locale:
##  [1] LC_CTYPE=en_US.UTF-8       LC_NUMERIC=C              
##  [3] LC_TIME=en_US.UTF-8        LC_COLLATE=C              
##  [5] LC_MONETARY=en_US.UTF-8    LC_MESSAGES=en_US.UTF-8   
##  [7] LC_PAPER=en_US.UTF-8       LC_NAME=C                 
##  [9] LC_ADDRESS=C               LC_TELEPHONE=C            
## [11] LC_MEASUREMENT=en_US.UTF-8 LC_IDENTIFICATION=C       
## 
## time zone: Etc/UTC
## tzcode source: system (glibc)
## 
## attached base packages:
## [1] stats     graphics  grDevices utils     datasets  methods   base     
## 
## other attached packages:
## [1] cpr_0.4.0.9000 qwraps2_0.6.1  rmarkdown_2.28
## 
## loaded via a namespace (and not attached):
##  [1] sass_0.4.9        utf8_1.2.4        generics_0.1.3    tcltk_4.4.1      
##  [5] lattice_0.22-6    lme4_1.1-35.5     digest_0.6.37     magrittr_2.0.3   
##  [9] rgl_1.3.1         evaluate_1.0.1    grid_4.4.1        fastmap_1.2.0    
## [13] jsonlite_1.8.9    Matrix_1.7-1      misc3d_0.9-1      fansi_1.0.6      
## [17] scales_1.3.0      jquerylib_0.1.4   cli_3.6.3         rlang_1.1.4      
## [21] munsell_0.5.1     splines_4.4.1     withr_3.0.1       base64enc_0.1-3  
## [25] cachem_1.1.0      yaml_2.3.10       tools_4.4.1       nloptr_2.1.1     
## [29] minqa_1.2.8       dplyr_1.1.4       colorspace_2.1-1  ggplot2_3.5.1    
## [33] boot_1.3-31       buildtools_1.0.0  vctrs_0.6.5       R6_2.5.1         
## [37] lifecycle_1.0.4   plot3D_1.4.1      htmlwidgets_1.6.4 MASS_7.3-61      
## [41] pkgconfig_2.0.3   bslib_0.8.0       pillar_1.9.0      gtable_0.3.6     
## [45] glue_1.8.0        Rcpp_1.0.13       tidyselect_1.2.1  xfun_0.48        
## [49] tibble_3.2.1      highr_0.11        sys_3.4.3         knitr_1.48       
## [53] farver_2.1.2      htmltools_0.5.8.1 nlme_3.1-166      labeling_0.4.3   
## [57] maketools_1.3.1   compiler_4.4.1