On 15 May 2026, DRC and Uganda declared an Ebola (Bundibugyo virus) outbreak. WHO declared a PHEIC on 16 May 2026 — the 17th DRC Ebola outbreak. As of 24 May, >1,010 cases and 130 deaths were reported across both countries. This document estimates R₀ and Rₜ using reported case data reconstructed from WHO, CDC, and ECDC situation reports.
Data reconstructed from WHO DON, CDC HAN, and ECDC situation reports (24 April – 24 May 2026). Daily new cases are interpolated between official cumulative anchor points.
Code
df <-read_csv("ebola_drc_uganda_2026.csv", show_col_types =FALSE) |>mutate(date =as.Date(date))# DRC only for Rt (Uganda cases too few for robust estimation)drc <- df |>filter(country =="DRC") |>select(date, I = new_cases_estimated, intervention)drc |>select(Date = date, `New Cases`= I, Intervention = intervention) |>gt() |>tab_header(title ="DRC Daily Estimated New Cases") |>tab_style(style =cell_fill(color ="#fff3cd"),locations =cells_body(rows = Intervention !="None") ) |>cols_align("center")
R₀ is estimated from the exponential growth phase (Apr 24 – May 15) using the Lotka-Euler equation:
\[R_0 = 1 + r \cdot T_g\]
where r is the growth rate and T_g is the mean generation time.
For Bundibugyo Ebola, we use a serial interval of mean = 12.0 days, SD = 5.3 days (based on prior Bundibugyo outbreaks; Althaus et al.; WHO Ebola Response Team literature).
Interpretation: An R₀ > 1 confirms sustained human-to-human transmission. R₀ values for past Ebola outbreaks typically range 1.5 – 2.5; Bundibugyo 2007 Uganda outbreak had R₀ ≈ 1.34 – 2.12.
4. Rₜ Estimation Over Time (EpiEstim)
Rₜ captures how transmissibility changes as interventions are applied. We use the parametric SI (serial interval) method from EpiEstim with a 7-day sliding window.
R₀ > 1 during the undetected phase (Apr 24 – May 15) confirms rapid unchecked spread before detection — consistent with the 4-week detection gap.
Rₜ trends show whether post-declaration interventions (contact tracing, isolation, travel screening) are bending the curve below the critical threshold of Rₜ = 1.
Bundibugyo historically has lower R₀ than Zaire strain (~1.3–2.1), but the delayed detection and geographic spread to Kampala elevate outbreak risk considerably.
Data reconstructed from WHO/CDC/ECDC official situation reports. Serial interval parameters from Althaus (2014) and WHO Ebola Response Team literature. Analysis uses EpiEstim (Cori et al., 2013, AJE).