tpower | R Documentation |
Compute a truncated power function.
tpower(x, knot, p)
x |
a vector on which the basis is calculated. |
knot |
a scalar giving the truncation point. |
p |
a scalar power for the basis, e.g. |
a vector with the truncated power function.
Paul Eilers
Eilers, P.H.C. and Marx, B.D. (2021). Practical Smoothing, The Joys of P-splines. Cambridge University Press.
library(JOPS)
# Basis on grid
x = seq(0, 4, length = 500)
knots = 0:3
Y = outer(x, knots, tpower, 1)
matplot(x, Y, type ='l', lwd = 2, xlab = 'x', ylab = '',
main ='Linear TPF basis')
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.