psp {ssym} | R Documentation |
Tool to build the basis matrix and the penalty matrix of P-splines.
Description
psp builds the basis matrix and the penalty matrix to approximate a smooth function using a P-spline.
Usage
psp(xx, lambda, b.order, nknots, diff)
Arguments
xx |
the explanatory variable. |
lambda |
an optional positive value that represents the smoothing parameter value. |
b.order |
an optional positive integer that specifies the degree of the B-spline basis matrix. Default is 3. |
nknots |
an optional positive integer that represents the number of internal knots of the P-spline. Default is |
diff |
an optional positive integer that specifies the order of the difference penalty term. Default is 2. |
Value
xx |
the explanatory variable |
Author(s)
Luis Hernando Vanegas <hvanegasp@gmail.com> and Gilberto A. Paula
References
Eilers P.H.C. and Marx B.D. (1996). Flexible smoothing with B-splines and penalties. Statistical Science. 11, 89-121.
Examples
n <- 300
t <- sort(round(runif(n),digits=2))
t2 <- psp(t, diff=3)
N <- attr(t2, "N") ## B-spline basis matrix
M <- attr(t2, "K") ## Penalty Matrix
knots <- attr(t2,"knots") ## Set of knots