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
inc05 is not created using the correct age brackets. I think equilibrium-init-create.R lines 74-75 need to be changed to >= signs so we get the index of the age vector right before age 5.
age59 <- which(age_vector * 12 >= 59)[1] - 1 # index of age vector before age is >59 months
age05 <- which(age_vector >= 5)[1] - 1 # index of age vector before age is 5 years
The text was updated successfully, but these errors were encountered:
inc05 is not created using the correct age brackets. I think equilibrium-init-create.R lines 74-75 need to be changed to >= signs so we get the index of the age vector right before age 5.
age59 <- which(age_vector * 12 >= 59)[1] - 1 # index of age vector before age is >59 months
age05 <- which(age_vector >= 5)[1] - 1 # index of age vector before age is 5 years
The text was updated successfully, but these errors were encountered: