Call:
glm.nb(formula = SUM_K ~ GENDER + AGE, data = df, init.theta = 0.9955253049,
link = log)
Coefficients:
Estimate Std. Error z value Pr(>|z|)
(Intercept) 1.55819 1.40250 1.111 0.267
GENDERMALE -0.28457 0.17420 -1.634 0.102
AGE 0.10613 0.07255 1.463 0.143
(Dispersion parameter for Negative Binomial(0.9955) family taken to be 1)
Null deviance: 174.85 on 150 degrees of freedom
Residual deviance: 170.87 on 148 degrees of freedom
AIC: 1375.4
Number of Fisher Scoring iterations: 1
Theta: 0.996
Std. Err.: 0.109
2 x log-likelihood: -1367.416
Biện luận cách 1: The coefficient of AGE is \(0.11\). When the AGE increase 1 unit, the number SUM_K counts is expected to increase by a factor of \(e^{0.11} = 1.116278\), all else equal (given the other variables are held constant in the model)
Biện luận cách 2: The coefficient for AGE is \(0.11\). This means that the expected log count SUM_K for a one-unit increase in AGE is \(0.11\).
Tiếng Việt: Hệ số của biến ĐỘ TUỔI là \(0.11\). Khi ĐỘ TUỔI tăng 1 đơn vị, thì số đếm SUM_K tăng theo 1 tỷ lệ là \(e^{0.11} = 1.116278\) đơn vị, trong trường hợp các biến còn lại là hằng số.
GENDER là biến phân loại, với FEMALE là reference
This is the estimated Poisson regression coefficient comparing MALE to FEMALE,
Biện luận cách 1: The coefficient of MALE is \(-0.333\), are associated with a decrease in mean SUM_K by a factor of \(e^{-0.333} = 0.7167\). That is, only 71.67% SUM_K in MALE than FEMALE.
Biện luận cách 2: The difference in the logs of expected counts SUM_K is expected to be 0.333 unit decrease for MALE compared to FEMALE, while holding the other variables constant in the model.
Biện luận cách 3: The indicator variable GENDER compares between MALE to FEMALE. The expected log count for MALE *decrease** by about \(-0.333\)
Tiếng Việt: Khi xét theo giới tính, thì MALE làm giảm trung bình SUM_K theo một tỷ lệ 0.7167 so với FEMALE. Hay nói cách khác, điểm số SUM_K của MALE thấp hơn FEMALE.