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
A very minor inconsistency, but the output of lambda() on a deterministic IPM is a named vector and the output on a stochastic IPM is unnamed.
lambda(ipm_det)
# lambda
# 0.9790214
lambda(ipm_det_ff) %>% names()
# [1] "lambda"
lambda(ipm_stoch)
# log(lambda) is returned by default for stochastic models. Set 'log = FALSE' for lambda on linear scale.
# [1] -0.02078642
lambda(ipm_stoch_ff) %>% names()
# log(lambda) is returned by default for stochastic models. Set 'log = FALSE' for lambda on linear scale.
# NULL
The text was updated successfully, but these errors were encountered:
A very minor inconsistency, but the output of
lambda()
on a deterministic IPM is a named vector and the output on a stochastic IPM is unnamed.The text was updated successfully, but these errors were encountered: