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


R negative.binomial 负二项式 GLM 的族函数


R语言 negative.binomial 位于 MASS 包(package)。

说明

使用 glm() 指定使用已知 theta 参数拟合负二项式广义线性模型所需的信息。

用法

negative.binomial(theta = stop("'theta' must be specified"), link = "log")

参数

theta

附加参数 theta 的已知值。

link

链接函数,作为指定 logsqrtidentity 之一的字符串、名称或单元素字符向量,或类 "link-glm" 的对象。

"family" 类的对象,glm() 拟合负二项式广义线性模型所需的函数和表达式列表。

例子

# Fitting a Negative Binomial model to the quine data
#   with theta = 2 assumed known.
#
glm(Days ~ .^4, family = negative.binomial(2), data = quine)

参考

Venables, W. N. and Ripley, B. D. (2002) Modern Applied Statistics with S-PLUS. Fourth Edition. Springer.

也可以看看

glm.nb , anova.negbin , summary.negbin

相关用法


注:本文由纯净天空筛选整理自R-devel大神的英文原创作品 Family function for Negative Binomial GLMs。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。