Skip to content

Commit

Permalink
pushing
Browse files Browse the repository at this point in the history
  • Loading branch information
paigemiller committed Nov 25, 2024
1 parent f2ec141 commit c403f16
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions scratch/ngm-structured-sir.R
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,11 @@ K <- matrix(c(
1, 1, 1, 1 # general
), nrow = 4, ncol = 4)



N <- c(100, 100, 10, 790) # pop size: core, kids, travelers, general
V <- c(100, 0, 0, 0) # doses
p_severe <- c(0.03, 0.09, 0.03, 0.03)
V <- c(10, 0, 0, 0) # doses
VE <- 0.7 # vaccine efficacy
p_severe <- c(0.03, 0.09, 0.03, 0.03)

ngm_sir(N = N, V = V, K = K, VE = VE, p_severe = p_severe)

0 comments on commit c403f16

Please sign in to comment.