On master the function returns the 3-tuple in the expected order. Looks like deriv and omμ are swapped on recently tagged versions, affecting releases:
It's almost harmless near μ = 0.5 but causes major headaches near the extremes.
On master:
GLM.inverselink(LogitLink(), -20.0)
# (2.0611536181902033e-9, 2.0611536139418488e-9, 0.9999999979388463)
On 1.9.2:
GLM.inverselink(LogitLink(), -20.0)
#(2.0611536181902033e-9, 0.9999999979388463, 2.0611536139418488e-9)
On master the function returns the 3-tuple in the expected order. Looks like
derivandomμare swapped on recently tagged versions, affecting releases:It's almost harmless near
μ = 0.5but causes major headaches near the extremes.On master:
On 1.9.2: