Description Usage Arguments Examples
Prediction of daily hospitalized, ICU and ventilated cases based on SIR model.
1 2 | Prehos.daily(obj, hosrate = 2.5, icurate = 0.75, venrate = 0.5,
hms = 15)
|
obj |
Input. Object from function fitSIR. |
hosrate |
Input. Hospitalization rate of infected people (percentage between 0 to 100). |
icurate |
Input. ICU rate of infected people (percentage between 0 to 100). |
venrate |
Input. Ventilated rate of infected people (percentage between 0 to 100). |
hms |
Input. Hospital market share (percentage between 0 to 100). |
1 2 3 4 5 | ## To predicte 100 days from today (dayFT=100).
casevolumne <- fitSIR(susceptible=4119405, Infected=3733, inihos=14,
hosrate=2.5, hms=15, inidbt=4, mrt=14, sdis=30, dayFT=100)
dailyhosp <- Prehos.daily(casevolumne, hosrate=2.5, icurate=0.75, venrate=0.5, hms=15)
head(dailyhosp, 21) ## show the first 20 days
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.