Closed femiguez closed 3 years ago
Thanks. Will investigate.
Found it. In some formula handling, white spaces where removed which accidentally transformed (x < -0.5 * b/(-exp(lc)))
into (x <- 0.5 * b/(-exp(lc)))
, that is, combining <
and -
. I will fix this today.
Should now be fixed. Thanks again for reporting this issue!
Thanks so much! Will test it! :)
I have an example where if I compute predictions manually I get the correct values, but it seems that predict, pp_check and fitted do not. Here is a reproducible example:
nonlinear model
This works fine and produces sensible estimates, but predict, pp_check and fitted do not work as expected.
Fitted is flat while the "manual" prediction behaves as expected.
I apologize if this is known, I might be missing something or it has been reported elsewhere.