lazou2016 {denvax} | R Documentation |
From "Symptomatic Dengue in Children in 10 Asian and Latin American Countries", Table 4.
lazou2016
a data.frame (data.table, if installed) with 20 rows and 4 columns:
character, common country name (all Peru for this data)
character, the bounding ages for the sample; format: lower age '-' upper age
integer, the number of samples
integer, the number of seropositive samples
https://doi.org/10.1056/NEJMoa1503877
require(denvax); require(ggplot2)
data(lazou2016)
ggplot(lazou2016) + aes(Age, Seropositive/Number*100, color = Country) +
geom_point() + labs(y="Seropositive %", x="Age Group") + lims(y=c(0,100)) +
theme_minimal()