Skip to content
Prev 70588 / 398525 Next

Incompatibility with VGAM

Kjetil Brinchmann Halvorsen wrote:
Yes and no:

Yes: The namespace would protect you if glm would call internally the 
family function such as poisson().

No: Probably you have asked something like glm(....., family=poisson()). 
Now the first instance of poisson() in the search path is used. You are 
passing a call to poisson(), and this is not bound to any namespace. Of 
course you can specify tha namespace such as
glm(....., family=stats::poisson()).

Uwe Ligges