当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


R update-methods stats4包中函数更新的方法


R语言 update-methods 位于 stats4 包(package)。

说明

更新"mle" 对象。

用法

## S4 method for signature 'mle'
update(object, ..., evaluate = TRUE)

参数

object

现有的配合。

...

调用的其他参数或具有更改值的参数。使用 name = NULL 删除参数 name

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-devel大神的英文原创作品 Methods for Function update in Package stats4。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。