Learn R Programming

babsim.hospital (version 11.8.8)

getInfectedPerDay: getInfectedPerDay

Description

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.

Usage

getInfectedPerDay(lambda = 4, StartDate = "2020-03-03", EndDate = "2020-06-24")

Arguments

lambda

Expected number of infections/day.

StartDate

Day, simulation starts

EndDate

Day, simulation ends

Value

This function returns a vector that lists the number of infections.

Examples

Run this code
# NOT RUN {
StartDate <- "2020-03-03"
EndDate <- "2020-06-24"
getInfectedPerDay(lambda = 4, StartDate = StartDate, EndDate = EndDate)
# }

Run the code above in your browser using DataLab