update-methods(stats4)
update-methods()所属R语言包:stats4
Methods for Function <code>update</code> in Package <span class="pkg">stats4</span>
函数方法的<code>更新</代码>在包装<span class="pkg"> stats4 </ SPAN>
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Update "mle" objects.
更新"mle"对象。
用法----------Usage----------
## S4 method for signature 'mle'
update(object, ..., evaluate = TRUE)
参数----------Arguments----------
参数:object
An existing fit.
现有的契合。
参数:...
Additional arguments to the call, or arguments with changed values. Use name=NULL to remove the argument name.
通话,或改变值的参数的附加参数。使用name=NULL删除参数name。
参数:evaluate
If true evaluate the new call else return the call.
如果真评估新的呼叫,否则返回通话。
方法----------Methods----------
signature(object = "ANY") Generic function: see
signature(object = "ANY")通用功能:
signature(object = "mle") Update a fit.
signature(object = "mle")更新一个合适的。
举例----------Examples----------
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[#注意记录的呼叫包含.. 1,中S4中调度问题]
update(fit, fixed=list(xhalf=3))
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|