當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。