-
Notifications
You must be signed in to change notification settings - Fork 75
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
Estimate number of deaths #13
Comments
Very nice code. I also have data for Italy. Including regional data. I'll put the code on github crediting all your work. BTW do you have a preferred way to be cited? |
Hi, Riccardo I have just submitted a PR with the proposed changes for revision. Although I am a graduate student, my research field is not population or disease growth. I am doing this because I got bored in quarantine. I am also not planning to publish a paper about this. So feel free to give credit the way you feel it is better :) If you are saying that the virus has already infected 80% of the population, then the data we are working here may not be precise. It will be necessary to find a precise estimate of \beta and \gamma, and then run the simulation with As for deaths by COVID-19, maybe it can be estimated by comparing with the death rate of pneumonia of 2019, in the same period of time? Maybe it is possible to estimate the number of people subjected to the disease by the measures the government is applying to contain the infection? Thank you. |
Hi, The pointo of Giuliano is good because death rates are more reliable that number of infected cases. In Brazil we have the situation of under report because we are not testing people. A ways to workaround this is consider death rates. |
You can use this expression....
It is an average only among these three values. In other other had you can also use another optimization algorithm with multi-objective instead of this with single objective |
Hi. I found your work very interesting :)
I see you are using a SIR-based model, but that doesn't seem to model the number of deaths. I propose a simple modification to this model. Basically SIR consists of three differential equations:
Here, the number of 'recovery' englobes both cured and deaths. This parameter is represented by γ, and therefore it could be split in two by γ = a + b, where a is the rate of cure, and b is the rate of death. Since the death rate seems to be linear (1.5% in China, for example), this linear decomposition of γ looks precise to me. After this, we can add a new variable k, (Kill rate), and add to the system of equations. Therefore:
I could generate the following graphic using this method:
With S_0 = 200000
However, I am not sure about how to handle this expression:
return alpha * l1 + (1 - alpha)
What is exactly the point of this linear interpolation? Here I will need to add another parameter to compensate for the death rate.
I can open a PR if you guys are interested.
I am also interested in using this software to simulate the situation here in Brazil. I have already collected some data. The idea is that a and b can change according to the situation of the healthcare system.
Thank you.
The text was updated successfully, but these errors were encountered: