简体   繁体   中英

Measuring the limit of a point on a smooth.spline in R

I'm not sure if that's the right terminology.

I've entered some data into R, and I've put a smooth.spline 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 x point), and maybe do some predictive analysis on points that extend beyond the graph.

Are there commands in R for measuring (or predicting) the points along a curve?

您正在寻找?predict.smooth.spline吗?

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM