Specifcially, this data is made from the SIR example found from this pomp
vignette. The output format for the data is data.frame
. This data set is a data frame with dimensions 52100 x 7. Each row consists of the time, number of individuals in each state, and simulation ID. The birth and death rates have been set to zero.
pomp_sir
A 52100 x 7 data.frame where each row is a time and the number of individuals in each state at that time. The columns include
possibly continuous, greater than 0
the simulation ID
the number of Susceptible at the given time
the number of Infectious at the given time
the number of Recovered at the given time
the number of new incidence
the number of cases recorded within a given reporting interval
#> time .id S I R H cases #> 1 0 1 950 50 0 0 NaN #> 2 0 2 950 50 0 0 NaN #> 3 0 3 950 50 0 0 NaN #> 4 0 4 950 50 0 0 NaN #> 5 0 5 950 50 0 0 NaN #> 6 0 6 950 50 0 0 NaN