Skip to content
Prev 324143 / 398503 Next

R 3.0.0

David Winsemius <dwinsemius <at> comcast.net> writes:
I'm skeptical too. 'glm()' is the 'stats' package which comes
with R and is automatically loaded.

  glm(...,family=binomial)  runs a logistic regression

(the default link is logit, so this is equivalent to 
family=binomial(link="logit"), if you prefer explicitness
over brevity)

  glm(...,family=binomial(link="probit"))

runs a probit regression.

   I'd actually be quite curious to hear how you reached
this conclusion, in case there is confusing or mis-information
going around that we can correct ...

  Ben Bolker