lazou2016 {denvax} | R Documentation |
The serosurvey data in L'Azou 2016
Description
From "Symptomatic Dengue in Children in 10 Asian and Latin American Countries", Table 4.
Usage
lazou2016
Format
a data.frame (data.table, if installed) with 20 rows and 4 columns:
- Country
character, common country name (all Peru for this data)
- Age
character, the bounding ages for the sample; format: lower age '-' upper age
- Number
integer, the number of samples
- Seropositive
integer, the number of seropositive samples
Source
https://doi.org/10.1056/NEJMoa1503877
Examples
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()
[Package denvax version 0.1.2 Index]