From 861de39779cfafcb4d8e62c60ded41422cc57932 Mon Sep 17 00:00:00 2001 From: Katie Hampson Date: Mon, 5 Feb 2024 09:28:31 +0000 Subject: [PATCH] Update results6_cost_analysis.R --- results6_cost_analysis.R | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/results6_cost_analysis.R b/results6_cost_analysis.R index fdb622c..dc19a54 100644 --- a/results6_cost_analysis.R +++ b/results6_cost_analysis.R @@ -63,3 +63,13 @@ Est_overall_costs$year <- "overall" write.csv(t(rbind(Cost_PEPDataFRAME, Est_overall_costs)), "outputs/Results_Cost_Analysis.csv") + +# Back of the envelope economic costs +humans <- 113959168 +HDR <- 11 +dogs <- humans/HDR +vax_cov <- 0.7 +dog_vaccine <- 0.25 +dogs * vax_cov * dog_vaccine # i.e. A fraction of PEP! +cost_per_dog_vax <- 2 +dogs * vax_cov * cost_per_dog_vax # STILL MUCH CHEAPER \ No newline at end of file