-
Notifications
You must be signed in to change notification settings - Fork 5
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
Add beds from past admissions #46
Comments
So the input here is...for the beds currently occupied, when were they admitted? Then there's some sort of conditional forecast of when they'll leave, which we augment going forward. Ideally the input would be line-list-ish with admit date, discharge date (which might be empty) - then could estimate real length of stay distro (and growth rate, etc). |
That would be the ideal scenario - estimate LoS, maybe a Poisson model for
admissions over time etc. Not ruling out that we include this in the
future, but at least as a first fix we should allow for admissions over the
last few days to be provided. Under-estimates can be big in packed
hospitals over the first few days, especially if growth rate is low. Would
be particularly problematic in decreasing phases of epidemics, as we are
likely to see repeatedly after lockdowns.
// sent from my Armor5 phone
…On Tue, 31 Mar 2020, 17:34 Carl A. B. Pearson, ***@***.***> wrote:
So the input here is...for the beds currently occupied, when were they
admitted? Then there's some sort of conditional forecast of when they'll
leave, which we augment going forward.
Ideally the input would be line-list-ish with admit date, discharge date
(which might be empty) - then could estimate real length of stay distro
(and growth rate, etc).
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#46 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ACSCIIQW42W3Z5BTD5G4SS3RKILTBANCNFSM4LXWI7VQ>
.
|
Would these already-admitted cases be subject to the same LOS distn from their original date of admission? Would there need to be a recommended minimum number of previous days' data, related to assumed LOS, so that we can reasonably assume ongoing occupancies have been captured? |
Are you talking about COVID patients or non-COVID patients? I think COVID wards are now being segregated. So we could talk about bed occupancy just in these areas, then we don't have to worry about non-COVID occupancy. If you are talking about COVID patients then can't we ask for an incidence and use the same method to go forward from their first start date? |
Yes exactly the same as admissions we forecast, and only COVID patients. Again, the app is only for COVID patients. |
Only COVID, and yes, that's the idea. Only we don't want to impose the entire time series (we discussed this during the call this morning). We'll clarify that when a single date is provided, we only model occupancy from new admissions. As an option, users will be able to upload a xslx / csv to provide incidence of admissions over several days. |
would it be possible to model this as something survival-y or is that too complicated? |
Not a bad idea, but not for the next release ;) |
Done at ad1c056 |
Currently, the model only predicts bed occupancy using admissions from the date of reference. This means beds currently occupied, from past admissions, are not being used, leading to under-estimating bed occupancy in the first days of the simulations.
A better approach would be to append forecasted admissions to past admission data, and the derive the bed occupancy predictions.
The text was updated successfully, but these errors were encountered: