-
Notifications
You must be signed in to change notification settings - Fork 151
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
["model"] ["bug"] Epi question regarding rate of new infection in SIR model #506
Comments
An issue is |
This issue of γ results in a large impact on projected estimates for larger estimates of social distancing (>60%). As social distancing increases, doubling time increases and β becomes more influenced by γ. β=(g+γ), therefore β → y, when g → 0 (when double-time [Td] increases). Therefore, the concern will not be seen when validating the model on past observed hospitalizations. Related, the more commonly-used period of infectivity is 7 days. See issue #492. Changing the period of infectivity does not have a large influence on the β when doubling time is short, but there is a large effect when doubling time decreases. |
#533 modifies both the default doubling_time and infectious_days. |
The math is correct and the suggested fix doesn't need to be incorporated. This issue can be closed. The default doubling_time and infectious_days fix is a separate issue has been discussed in issue #492 and elsewhere. The new defaults are an improvement but people would suggest further modifications, as discussed. |
Summary
I was looking for clarification as to why you have stated in the documentation that the rate of new infection in the SIR model is
g=βS−γ
as opposed tog=βS
.Additional details
In the SIR model, the number of infected patients is calculated as follows:
It+1 = It + βStIt - γIt
in whichIt
is the starting number of infected patients,βStIt
is the number of susceptible patients who become infected (i.e. new infections), andγIt
is the number of infected patients who become recovered (i.e. new recoveries). To me this means that the rate of new infections is mediated byβS
and thatγ
mediates the rate of new recoveries.Suggested fix
Using
g=βS
to estimate rate of new infections, which may have implications in estimating doubling time.The text was updated successfully, but these errors were encountered: