R语言
update-methods
位于 stats4
包(package)。 说明
更新"mle"
对象。
用法
## S4 method for signature 'mle'
update(object, ..., evaluate = TRUE)
参数
object |
现有的配合。 |
... |
调用的其他参数或具有更改值的参数。使用 |
evaluate |
如果 true 评估新的调用,否则返回该调用。 |
方法
signature(object = "ANY")
-
通用函数:参见
update
。 signature(object = "mle")
-
更新一下合身。
例子
x <- 0:10
y <- c(26, 17, 13, 12, 20, 5, 9, 8, 5, 4, 8)
ll <- function(ymax = 15, xhalf = 6)
-sum(stats::dpois(y, lambda = ymax/(1+x/xhalf), log = TRUE))
fit <- mle(ll)
## note the recorded call contains ..1, a problem with S4 dispatch
update(fit, fixed = list(xhalf = 3))
相关用法
- R profile-methods stats4 包中的函数配置文件方法
- R plot-methods stats4 包中函数绘图的方法
- R mle 最大似然估计
- 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 loess.control 设置黄土参数
注:本文由纯净天空筛选整理自R-devel大神的英文原创作品 Methods for Function update in Package stats4。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。