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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。