R/fortify-aggregate.R
fortify_aggregate.Rd
Take external aggregate data and put it in a format used in this package
fortify_aggregate(data, states = NULL, package_source = NULL)
data | output from external source package. See details |
---|---|
states | names of states we want aggregate totals of at each time |
package_source | optional argument to include the package from which the output is derived from, which helps with the fortify function when outputs are of generic classes such as list or data.frame |
a data frame with the following columns
time
columns X0, ..., X_K. which are numeric
This function converts external data sources (we currently support output from the EpiModel and pomp R packages), which is already aggregated and puts it in a format that can be used by our exploring functions.
## ICM out <- fortify_aggregate(EpiModel_icm)#>#> #> #>## DCM out3 <- fortify_aggregate(EpiModel_det)#>#> #> #>## POMP (POMP_LIST) out <- fortify_aggregate(pomp_pomp, states = NULL) ## out <- fortify_aggregate(pomp_pomp, states = c("S", "I", "R")) out <- fortify_aggregate(pomp_df, package_source = "pomp")