I have done some analyses in R using GLMs. After fitting the right model to the data, I usually test my model with
anova(model, test="F")
or
anova(model, test="chi")
depending on the distribution.
For the F-test I get an output with the following 6 columns:
Df | Deviance | Resid. Df | Resid. Dev | F | Pr(>F)
Is it ok to quote the result of the test like:
F(df, Resid.Df)=F, p= Pr(>F)
If I perform the Chi-sq test on the model, I get an output with the following 5 columns:
Df | Deviance | Resid. Df | Resid. Dev | Pr(>Chi)
What do I have to report here? I read that Deviance is corresponding to the Chi-squared value. So is it ok to report something like:
X^2=Deviance, df=df, p=Pr(>Chi)
and is df in this case df or residual df?
And a general question: is it appropriate to report GLM statistics like that?
I would appreciate any help or literature recommendation very much! Thanks!