hav_be_2002 | R Documentation |
A subset of the serological dataset of Varicella-Zoster Virus (VZV) and Parvovirus B19 in Belgium where only individuals living in Flanders were selected
hav_be_2002
A data frame with 2 variables:
Age of individual
If the individual is seropositive or not
Thiry, N., Beutels, P., Shkedy, Z. et al. The seroepidemiology of primary varicella-zoster virus infection in Flanders (Belgium). Eur J Pediatr 161, 588-593 (2002). \Sexpr[results=rd]{tools:::Rd_expr_doi("doi:10.1007/s00431-002-1053-2")}
# Reproduce Fig 4.1 (upper right panel), p. 63
library(dplyr)
df <- hav_be_2002 %>%
group_by(age) %>%
summarise(pos = sum(seropositive), tot = n())
plot(
df$age, df$pos / df$tot,
pty = "s", cex = 0.06 * df$tot, pch = 16, xlab = "age",
ylab = "seroprevalence", xlim = c(0, 86), ylim = c(0, 1)
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.