lazou2016: The serosurvey data in L'Azou 2016

Description Usage Format Source Examples

Description

From "Symptomatic Dengue in Children in 10 Asian and Latin American Countries", Table 4.

Usage

1

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

1
2
3
4
5
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()

denvax documentation built on Dec. 2, 2019, 1:09 a.m.