R語言
weighted.residuals
位於 stats
包(package)。 說明
根據線性模型擬合計算加權殘差。
用法
weighted.residuals(obj, drop0 = TRUE)
參數
obj |
|
drop0 |
合乎邏輯的。如果 |
細節
加權殘差基於偏差殘差,對於 lm
擬合來說,偏差殘差是原始殘差 乘以 ,其中 是 lm
調用中指定的 weights
。
刪除權重為零的案例與 influence
和相關函數兼容。
值
長度為 drop0 = TRUE
) 的數量或觀測值的數量,否則。 的數值向量,其中 是非 0 權重 (
例子
## following on from example(lm)
all.equal(weighted.residuals(lm.D9),
residuals(lm.D9))
x <- 1:10
w <- 0:9
y <- rnorm(x)
weighted.residuals(lmxy <- lm(y ~ x, weights = w))
weighted.residuals(lmxy, drop0 = FALSE)
也可以看看
相關用法
- R weighted.mean 加權算術平均值
- R weights 提取模型權重
- R window 時間(係列)窗口
- R wilcox.test Wilcoxon 秩和和符號秩檢驗
- R stlmethods STL 對象的方法
- R medpolish 矩陣的中值波蘭(穩健雙向分解)
- R naprint 調整缺失值
- R summary.nls 總結非線性最小二乘模型擬合
- R summary.manova 多元方差分析的匯總方法
- R formula 模型公式
- R nls.control 控製 nls 中的迭代
- R aggregate 計算數據子集的匯總統計
- R deriv 簡單表達式的符號和算法導數
- R kruskal.test Kruskal-Wallis 秩和檢驗
- R quade.test 四方測試
- R decompose 移動平均線的經典季節性分解
- R plot.stepfun 繪製階躍函數
- R alias 查找模型中的別名(依賴項)
- R qqnorm 分位數-分位數圖
- R eff.aovlist 多層方差分析的計算效率
- R pairwise.t.test 成對 t 檢驗
- R loglin 擬合對數線性模型
- R predict.smooth.spline 通過平滑樣條擬合進行預測
- R bartlett.test 方差齊性的 Bartlett 檢驗
- R influence.measures 回歸刪除診斷
注:本文由純淨天空篩選整理自R-devel大神的英文原創作品 Compute Weighted Residuals。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。