Hello, I want to compare two
GLMs (binomial dependent variable)
, the results are:
m1<-glm(symptoms ~ 1, data=data2)
m2<-glm(symptoms ~ phq_index, data=data2
I am used to comparing these kind of models using chi-square values, a
chi-square difference, and a chi-square difference test. Since all other
models in the paper are compared this way, and since I'd like to report
them in a table together: why exactly is this model test different from my
other models tests in which I get chi-square values and difference tests?
And can I obtain chi-square values from this test?