Skip to content
Prev 155565 / 398502 Next

binomial(link="inverse")

This isn't accurate. You are talking about link functions *known by name*.

     link: a specification for the model link function.  This can be a
           name/expression, a literal character string, a length-one
           character vector or an object of class '"link-glm"' (provided
           it is not specified via one of the standard names given
           next).

Nothing is stopping you giving the link as an object, and there is an 
example on the help page.  We made this easily user-extensible quite a 
while back.

As to why the list of links known by name is as it is, that seems history. 
in part the White Book history of S.  I've always thought it an error that 
'log' was a standard link for binomial, as the range does not match the 
specification of probabilities (and S did not do so, MASS Table 7.1 ). 
For each of log and inverse you have a valid model only for some values of 
the data, and can easily ask for predictions that give an out-of-range 
error.
On Tue, 9 Sep 2008, Ben Bolker wrote: