我只是运行负二项式GLM,这是输出:
Call:
glm.nb(formula = small ~ method + site + depth, data = size.dat,
init.theta = 1.080668549, link = log)
Deviance Residuals:
Min 1Q Median 3Q Max
-2.2452 -0.9973 -0.3028 0.3864 1.8727
Coefficients:
Estimate Std. Error z value Pr(>|z|)
(Intercept) 1.6954 0.1152 14.720 < 2e-16 ***
method.L -0.6828 0.1637 -4.171 3.04e-05 ***
site.L 0.9952 0.2050 4.854 1.21e-06 ***
site.Q -0.4634 0.1941 -2.387 0.017 *
depth.L 0.8951 0.1988 4.502 6.74e-06 ***
depth.Q 0.2060 0.1984 1.038 0.299
---
Signif. codes: 0 ‘***’ 0.001 ‘**’ 0.01 ‘*’ 0.05 ‘.’ 0.1 ‘ ’ 1
(Dispersion parameter for Negative Binomial(1.0807) family taken to be 1)
Null deviance: 185.1 on 89 degrees of freedom
Residual deviance: 100.8 on 84 degrees of freedom
AIC: 518.24
我的预测变量都是绝对的。这就是为什么我要.L
和.Q
。我假设它们代表不同的类别,但是在运行GLM之前,有人知道我可以使用代码对它们进行标记,以使它们显示为不同的类别吗?
参见ats.ucla.edu/stat/r/library/contrast_coding.htm#ORTHOGONAL
—
Scortchi-恢复莫妮卡
我发现该代码令人困惑,是否有更简单的代码?类别非常简单:方法1和方法2,站点1,站点2和站点3,深度为5、10和15
—
Vivienne