Skip to content
Prev 245530 / 398506 Next

logistic regression or not?

array chip <arrayprofile <at> yahoo.com> writes:

[snip]
Sometimes I've seen it called "binomial regression", or just 
"a binomial generalized linear model"
summary(fit) gives you p-values from a Wald test.
  anova() gives you tests based on the Likelihood Ratio Test.
  In general the LRT is more accurate.
glm(percentage~treatment,weights=total,data=tests,family=binomial)

 is equivalent to the model you fitted above.
Don't quite know what you mean here.  How is the situation "almost
the same as ANOVA" different from the situation you described above?
Do you mean when there are multiple factors? or ???