Displaying 1 result from an estimated 1 matches for "c_logit_linkinv".
2025 Jan 08
1
binomial()$linkinv no longer accepts integer values
...t were of interest I could 'git
bisect' to figure it out but maybe someone will save me the trouble ...)
Thoughts, insights? Should I post this to r-bugzilla? Or suck it up
and accept it as the new reality?
cheers
Ben Bolker
====
binomial()$linkinv is:
function (eta)
.Call(C_logit_linkinv, eta)
<environment: namespace:stats>
Here is the body of the function in C code:
https://github.com/r-devel/r-svn/blob/195ab0870a8131d01492f8f1d3a2ad514bc7e040/src/library/stats/src/family.c#L72C1-L89C2
SEXP logit_linkinv(SEXP eta)
{
SEXP ans = PROTECT(shallow_duplicate(eta));
in...