从locfit模型中获取系数

时间:2018-02-12 10:20:26

标签: r regression non-linear-regression

我已经通过“locfit”软件包对数据进行了局部回归,我想得到系数,但是我无法得到它们。 我用ev = none()运行了函数“locfit”,因为我想要一个半参数拟合。 我有拟合和残差值,但没有系数。我知道我可以使用另一个包,但这个适用于这种曲线拟合。

例如:

> x
 [1] 1 2 3 4 5
> y
 [1]  5  3 25 30 40
> model=locfit(x~y,ev=none())
> fitted(model)
 [1] 1.573481 1.488706 3.119822 3.704870 5.113120
> residuals(model)
 [1] -0.5734813  0.5112941 -0.1198224  0.2951299 -0.1131203
> coefficients(model)
 NULL

如果有人可以帮我解决这个问题,我将不胜感激。问候。

0 个答案:

没有答案