Skip to content
Prev 164387 / 398506 Next

Validity of GLM using Gaussian family with sqrt link

a) There is a difference between link=sqrt and link="sqrt".

     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"' (such as
           generated by 'make.link') provided it is not specified _via_
           one of the standard names given next.

link-sqrt is a name and not accepted.  link="sqrt" is a literal character 
string, and is.

b) Your first model is a model for integer observations, the second for 
continuous observations.  As such, the log-likleihoods are computed with 
respect to different reference measures and are not comparable.  In less 
technical terms, in model 1 you compute the likelihood from probabilities 
and in model 2 from probability densities, and the latter depend on the 
units of measurement.
On Wed, 10 Dec 2008, Lam, Tzeng Yih wrote: