You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
That list returns a function that is a formula Y * eta - exp(eta) and at least one value in my eta exceeds .Machine$double.xmax when exponentiated. I'm not familiar enough with the method to know what eta is exactly, but on my machine the largest integer that can be exponentiated is exp(709) before it returns Inf. In my data the largest value for eta was 6842.
The call would complete if I rescaled the original data to be in a range about 100 times smaller than the original.
The text was updated successfully, but these errors were encountered:
I am experiencing an error in a call to
ergmm
using anodecov
term.Where I tracked it down to
latentnet:::ergmm.lpY
and specifically this linelatentnet/R/ergmm.probs.R
Line 89 in 09ba175
That list returns a function that is a formula
Y * eta - exp(eta)
and at least one value in my eta exceeds.Machine$double.xmax
when exponentiated. I'm not familiar enough with the method to know what eta is exactly, but on my machine the largest integer that can be exponentiated isexp(709)
before it returnsInf
. In my data the largest value for eta was 6842.The call would complete if I rescaled the original data to be in a range about 100 times smaller than the original.
The text was updated successfully, but these errors were encountered: