tpower {JOPS} | R Documentation |
Compute a truncated power function.
Description
Compute a truncated power function.
Usage
tpower(x, knot, p)
Arguments
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. |
Value
a vector with the truncated power function.
Author(s)
Paul Eilers
References
Eilers, P.H.C. and Marx, B.D. (2021). Practical Smoothing, The Joys of P-splines. Cambridge University Press.
Examples
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')
[Package JOPS version 0.1.19 Index]