简体   繁体   English

测量R中smooth.spline上的点的极限

[英]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. 我已经在R中输入了一些数据,并使用以下命令在其中放入了smooth.spline。

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. 现在,我想测量一些极限(或曲线在给定的x点处),并可能对超出图形的点进行一些预测分析。

Are there commands in R for measuring (or predicting) the points along a curve? R中是否有用于测量(或预测)曲线上点的命令?

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

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

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