當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


R fitted 提取模型擬合值


R語言 fitted 位於 stats 包(package)。

說明

fitted 是一個通用函數,它從建模函數返回的對象中提取擬合值。 fitted.values 是它的別名。

模型擬合函數返回的所有對象類都應提供 fitted 方法。 (請注意,通用是 fitted 而不是 fitted.values 。)

方法可以利用napredict方法來補償缺失值的遺漏。默認方法和 nls 方法都是如此。

用法

fitted(object, ...)
fitted.values(object, ...)

參數

object

提取模型擬合值有意義的對象。

...

其他論點。

從對象 object 中提取的擬合值。

參考

Chambers, J. M. and Hastie, T. J. (1992) Statistical Models in S. Wadsworth & Brooks/Cole.

也可以看看

coefficientsglmlmresiduals

相關用法


注:本文由純淨天空篩選整理自R-devel大神的英文原創作品 Extract Model Fitted Values。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。