Learn R Programming

denvax (version 0.1.2)

lazou2016: The serosurvey data in L'Azou 2016

Description

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

Usage

lazou2016

Arguments

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

Examples

Run this code
# NOT RUN {
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()
# }

Run the code above in your browser using DataLab