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

时间:2012-06-07 16:25:48

标签: r statistics regression

我不确定这是否是正确的术语。

我已经在R中输入了一些数据,并且使用以下命令将smooth.spline放入其中。

smoothingSpline = smooth.spline(year, rate, spar=0.35)
plot(x,y)
lines(smoothingSpline)

现在我想测量一些限制(或者曲线在给定的x点处),并且可以对超出图形的点进行一些预测分析。

R中是否有命令用于测量(或预测)曲线上的点?

1 个答案:

答案 0 :(得分:1)

?predict.smooth.spline您要找的是什么?