Call:
glm(formula = darters ~ river + pH + temp, family = poisson, data = darterData)
Deviance Residuals:
Min 1Q Median 3Q Max
-3.7422 -1.0257 0.0027 0.7169 3.5347
Coefficients:
Estimate Std.Error z value Pr(>|z|)
(Intercept) 3.144257 0.218646 14.381 < 2e-16 ***
riverWatauga -0.049016 0.051548 -0.951 0.34166
pH 0.086460 0.029821 2.899 0.00374 **
temp -0.059667 0.009149 -6.522 6.95e-11 ***
---
Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
(Dispersion parameter for poisson family taken to be 1)
Null deviance: 233.68 on 99 degrees of freedom
Residual deviance: 187.74 on 96 degrees of freedom
AIC: 648.21
Saya ingin tahu cara menafsirkan setiap estimasi parameter dalam tabel di atas.
Jawaban:
Saya rasa judul pertanyaan Anda tidak secara akurat menangkap apa yang Anda minta.
Pertanyaan tentang bagaimana menafsirkan parameter dalam GLM sangat luas karena GLM adalah kelas model yang sangat luas. Ingatlah bahwa GLM memodelkan variabel respons yang diasumsikan mengikuti distribusi yang diketahui dari keluarga eksponensial, dan bahwa kami telah memilih fungsi yang tidak dapat dibalik g sedemikian sehingga E [ yy g
untukvariabel prediktor J x . Dalam model ini, interpretasi setiap parameter tertentu β j adalah laju perubahan g ( y ) terhadap x j . Tentukan μ ≡ E [ y
yang akhirnya berarti sesuatu yang nyata:
There are three important pieces to note here:
So in your example, the effect of increasing pH by 1 is to increaselny^ by y^(e0.09−1) ; that is, to multiply y^ by e0.09≈1.09 . It looks like your outcome is the number of darters you observe in some fixed unit of time (say, a week). So if you're observing 100 darters a week at a pH of 6.7, raising the pH of the river to 7.7 means you can now expect to see 109 darters a week.
sumber
My suggestion would be to create a small grid consisting of combinations of the two rivers and two or three values of each of the covariates, then use the
predict
function with your grid asnewdata
. Then graph the results. It is much clearer to look at the values that the model actually predicts. You may or may not want to back-transform the predictions to the original scale of measurement (type = "response"
).sumber