Description Usage Arguments Details Value Examples
View source: R/fortify-aggregate.R
Take external aggregate data and put it in a format used in this package
| 1 | 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 | 
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.
a data frame with the following columns
time
columns X0, ..., X_K. which are numeric
| 1 2 3 4 5 6 7 8 9 |    ## 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")
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.