Displaying 1 result from an estimated 1 matches for "month11".
Did you mean:
month1
2009 Mar 06
1
Interpreting GLM coefficients
...Month6
Month7 Month8 Month9 Month10
9.772076e-02 -2.709955e-03 -1.586887e-01 -1.887837e-02
-5.183241e-03 5.870942e-02 7.075386e-02 2.061223e-02
7.372268e-03 -1.204835e-02 -5.047994e-03 2.441498e-02
Month11
-5.665261e-03
So I can write, for example:
y = -4.416915e+02 + -1.270986e-04*x^2 + 4.758455e-01*x # And add this
function to a plot(Year,Fishes).
My problem is to understand the coefficients for the model with interaction:
Model2<-glm(Fishes ~ Year + I(Year^2) + Kind.Geographic + Kind.Fi...