Skip to content

R 3.0.0

4 messages · Simmons, Susan J., David Winsemius, Kjetil Halvorsen +1 more

#
On May 24, 2013, at 8:29 AM, Simmons, Susan J. wrote:

            
I would be very skeptical about that claim. Where is your evidence? Have you looked at:

?family  # ?
?quasi   # ?
R-help is a plain text mailing list.
#
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