ns_term | R Documentation |
Term for a Basis Matrix for Natural Cubic Splines
ns_term(
x = numeric(),
df = NULL,
knots = NULL,
intercept = FALSE,
Boundary.knots = range(if (use_log) log(x) else x),
use_log = FALSE
)
x , df , knots , intercept , Boundary.knots |
same as |
use_log |
|
A list like ns
with an additional element called eval
to evaluate the basis. See VAJointSurv-terms
.
poly_term
, bs_term
, weighted_term
, and
stacked_term
.
vals <- c(0.41, 0.29, 0.44, 0.1, 0.18, 0.65, 0.29, 0.85, 0.36, 0.47)
spline_basis <- ns_term(vals,df = 3)
# evaluate spline basis at 0.5
spline_basis$eval(0.5)
# evaluate first derivative of spline basis at 0.5
spline_basis$eval(0.5, der = 1)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.