Displaying 2 results from an estimated 2 matches for "logit_link".
2005 Jun 02
2
dotcode typo? (PR#7917)
....
Whoops, spoke too soon. This definitely breaks the logic, so I won't
commit. With this change the check of demo(lm.glm) in package utils
fails with this error message:
> dead <- cbind(x, n - x)
> summary(glm(dead ~ dose, family = binomial(link = logit)))
Error in .Call("logit_link", mu) : cannot resolve native routine
Execution halted
I'm cc'ing this to R-bugs so we don't forget it, but I'm not going to be
able to fix it down myself.
Duncan Murdoch
2012 Apr 06
1
Compatibility problem with R-2.9.0 and R-2.14.0
Hello all,
Using classical glm function with binomial family, I experienced a problem when using predict() over
a glm object.
I found that family objects built on R-2.14.0 contain elements like :
.Call(C_logit_link,...)
But on R-2.9.0, the object C_logit_link can not be found. Instead, this prior version used to call
more simply :
.Call("logit_link",...)
which causes no problem.
Is it possible to use R-2.14.0 family objects on prior R versions ?
I may have missed some note in R changes but trie...