Helper function to generate a vector of setting-specific contact rates

mk_contact_rate_setting(values_to_update = NULL)

Arguments

values_to_update

named list of values to update in default list of setting-specific contact rates

Value

named list of setting-specific contact rates

Examples

mk_contact_rate_setting()
#> $household
#> [1] 4.11
#> 
#> $school
#> [1] 11.41
#> 
#> $work
#> [1] 8.07
#> 
#> $community
#> [1] 2.79
#> 
mk_contact_rate_setting(list(school = 0))
#> $household
#> [1] 4.11
#> 
#> $school
#> [1] 0
#> 
#> $work
#> [1] 8.07
#> 
#> $community
#> [1] 2.79
#>