The hardware and bandwidth for this mirror is donated by dogado GmbH, the Webhosting and Full Service-Cloud Provider. Check out our Wordpress Tutorial.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]dogado.de.
This vignette is still work in progress. But the examples are hopefully already helpful and inspiring.
Epi Gantt plots are used to visualize exposure times in infectious disease outbreaks. Hospital outbreaks are a common example for their use. Lying times of patients on different wards can be visualized and potential transmission routes identified.
outbreaks::varicella_sim_berlin |>
filter(center1 == "Platz der Luftbruecke") |>
arrange(onset) |>
slice_head(n = 20) |>
mutate(
fullname = paste(firstname, lastname),
fullname = factor(fullname, levels = rev(fullname))
) |>
pivot_longer(
cols = starts_with(c("arrival", "leave", "center")),
names_to = c(".value", "group"),
names_pattern = "(\\w+)(\\d+)"
) |>
ggplot(aes(y = fullname)) +
geom_epigantt(aes(xmin = arrival, xmax = leave, colour = center), linewidth = 4) +
geom_point(aes(x = onset)) +
theme_bw() +
theme(legend.position = "top")
These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.
Health stats visible at Monitor.