Define a list of _opts()
to pass to regional_epinow()
_opts()
accepting
arguments. This is useful when different settings are needed between regions
within a single regional_epinow()
call. Using opts_list()
the defaults
can be applied to all regions present with an override passed to regions as
necessary (either within opts_list()
or externally).
Arguments
- opts
An
_opts()
function call such asrt_opts()
.- reported_cases
A data frame containing a
region
variable indicating the target regions.- ...
Optional override for region defaults. See the examples for use case.
Value
A named list of options per region which can be passed to the _opt
accepting arguments of regional_epinow
.
Examples
# uses example case vector
cases <- example_confirmed[1:40]
cases <- data.table::rbindlist(list(
data.table::copy(cases)[, region := "testland"],
cases[, region := "realland"]
))
# default settings
opts_list(rt_opts(), cases)
#> $testland
#> $prior
#> $prior$mean
#> [1] 1
#>
#> $prior$sd
#> [1] 1
#>
#>
#> $use_rt
#> [1] TRUE
#>
#> $rw
#> [1] 0
#>
#> $use_breakpoints
#> [1] TRUE
#>
#> $future
#> [1] "latest"
#>
#> $pop
#> [1] 0
#>
#> $gp_on
#> [1] "R_t-1"
#>
#> attr(,"class")
#> [1] "rt_opts" "list"
#>
#> $realland
#> $prior
#> $prior$mean
#> [1] 1
#>
#> $prior$sd
#> [1] 1
#>
#>
#> $use_rt
#> [1] TRUE
#>
#> $rw
#> [1] 0
#>
#> $use_breakpoints
#> [1] TRUE
#>
#> $future
#> [1] "latest"
#>
#> $pop
#> [1] 0
#>
#> $gp_on
#> [1] "R_t-1"
#>
#> attr(,"class")
#> [1] "rt_opts" "list"
#>
# add a weekly random walk in realland
opts_list(rt_opts(), cases, realland = rt_opts(rw = 7))
#> $testland
#> $prior
#> $prior$mean
#> [1] 1
#>
#> $prior$sd
#> [1] 1
#>
#>
#> $use_rt
#> [1] TRUE
#>
#> $rw
#> [1] 0
#>
#> $use_breakpoints
#> [1] TRUE
#>
#> $future
#> [1] "latest"
#>
#> $pop
#> [1] 0
#>
#> $gp_on
#> [1] "R_t-1"
#>
#> attr(,"class")
#> [1] "rt_opts" "list"
#>
#> $realland
#> $prior
#> $prior$mean
#> [1] 1
#>
#> $prior$sd
#> [1] 1
#>
#>
#> $use_rt
#> [1] TRUE
#>
#> $rw
#> [1] 7
#>
#> $use_breakpoints
#> [1] TRUE
#>
#> $future
#> [1] "latest"
#>
#> $pop
#> [1] 0
#>
#> $gp_on
#> [1] "R_t-1"
#>
#> attr(,"class")
#> [1] "rt_opts" "list"
#>
# add a weekly random walk externally
rt <- opts_list(rt_opts(), cases)
rt$realland$rw <- 7
rt
#> $testland
#> $prior
#> $prior$mean
#> [1] 1
#>
#> $prior$sd
#> [1] 1
#>
#>
#> $use_rt
#> [1] TRUE
#>
#> $rw
#> [1] 0
#>
#> $use_breakpoints
#> [1] TRUE
#>
#> $future
#> [1] "latest"
#>
#> $pop
#> [1] 0
#>
#> $gp_on
#> [1] "R_t-1"
#>
#> attr(,"class")
#> [1] "rt_opts" "list"
#>
#> $realland
#> $prior
#> $prior$mean
#> [1] 1
#>
#> $prior$sd
#> [1] 1
#>
#>
#> $use_rt
#> [1] TRUE
#>
#> $rw
#> [1] 7
#>
#> $use_breakpoints
#> [1] TRUE
#>
#> $future
#> [1] "latest"
#>
#> $pop
#> [1] 0
#>
#> $gp_on
#> [1] "R_t-1"
#>
#> attr(,"class")
#> [1] "rt_opts" "list"
#>