View source: R/orthogonalBsplines.R
fitLS | R Documentation |
Estimates the control vector for a spline fit by penalized least squares. The penalty being the penalty parameter times the functional inner product of the second derivative of the spline curve.
fitLS(object, x, y, penalty = 0)
object |
The |
x |
predictor variable. |
y |
response variable. |
penalty |
The penalty multiplier. |
For numeric vector y, and x, and a set of basis functions, represented in object
, defined on the knots (k_0,…,k_m).
The likelihood is defined by
sum_i (y_i-b(x_i)mu) + integral mu^T b''(t)^T b''(t) mu dt
The function estimates μ.
a vector of the control points.
SplineBasis
knots<-c(0,0,0,0:5,5,5,5) base<-SplineBasis(knots) x<-seq(0,5,by=.5) y<-exp(x)+rnorm(length(x),sd=5) fitLS(base,x,y)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.