Nothing
bspline <- function(x, xl, xr, ndx, bdeg){
dx <- (xr - xl)/ndx
knots <- seq(xl - bdeg*dx, xr + bdeg*dx, by = dx)
B <- spline.des(knots, x, bdeg + 1, 0*x)$design
res <- list(B = B, knots = knots)
res
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.