Measuring the limit of a point on a smooth.spline in R
- by Subtle Array
I'm not sure if that's the right terminology.
I've entered some data into R, and I've put a smoothingSpline through it using the following command.
smoothingSpline = smooth.spline(year, rate, spar=0.35)
plot(x,y)
lines(smoothingSpline)
Now I'd like to measure some limits (or where the curve is at a given y point), and maybe to some predictive analysis on points that extend beyond the graph.
Are there commands in R for doing this?