glm.convert(MASS)
glm.convert()所属R语言包:MASS
Change a Negative Binomial fit to a GLM fit
改变负二项分布拟合到的GLM合适
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This function modifies an output object from glm.nb() to one that looks like the output from glm() with a negative binomial family. This allows it to be updated keeping the theta parameter fixed.
此功能修改,看起来像glm.nb()负二项分布家庭的输出从glm()一个输出对象。这允许它保持固定的THETA参数进行更新。
用法----------Usage----------
glm.convert(object)
参数----------Arguments----------
参数:object
An object of class "negbin", typically the output from glm.nb(). </table>
类"negbin",通常是从glm.nb()输出的对象。 </ TABLE>
Details
详情----------Details----------
Convenience function needed to effect some low level changes to the structure of the fitted model object.
方便的功能,需要对一些低级别的变化拟合模型对象的结构。
值----------Value----------
An object of class "glm" with negative binomial family. The theta parameter is then fixed at its present estimate.
一个对象的类"glm"负二项分布家庭。 theta的参数,然后固定在其目前的估计。
参见----------See Also----------
glm.nb, negative.binomial, glm
glm.nb,negative.binomial,glm
举例----------Examples----------
quine.nb1 <- glm.nb(Days ~ Sex/(Age + Eth*Lrn), data = quine)
quine.nbA <- glm.convert(quine.nb1)
quine.nbB <- update(quine.nb1, . ~ . + Sex:Agern)
anova(quine.nbA, quine.nbB)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|