View source: R/getInfectedPerDay.R
getInfectedPerDay | R Documentation |
Generate Poisson distributed infections.
This function calculates n
, the number of days between StartDate
and EndDate
, and returns a vector with n
realizations of a
Poisson(lambda) distributed random variable.
getInfectedPerDay(lambda = 4, StartDate = "2020-03-03", EndDate = "2020-06-24")
lambda |
Expected number of infections/day. |
StartDate |
Day, simulation starts |
EndDate |
Day, simulation ends |
This function returns a vector that lists the number of infections.
StartDate <- "2020-03-03" EndDate <- "2020-06-24" getInfectedPerDay(lambda = 4, StartDate = StartDate, EndDate = EndDate)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.