These data document a dog rabies epidemic from 2003 to 2012 in Bangui, Central African Republic, and its surroundings. Data comprise dates and locations of the cases, as well as viral sequences of the pathogen for most cases.
rabies_car_2003
A list comprising a data.frame
($linelist
) and a DNAbin
matrix
($dna
). $linelist
contains the following
variables:
$index
: numeric identifier of the case
$date
: date of case reporting
$latitude
: the latitude of the collection point
$longitude
: the longitude of the collection point
$has_dna
: a logical indicating of the case has a matching
pathogen sequence in $dna
$dna
is a DNAbin
matrix
whose labels are to be matched
against $linelist$index
.
The data were provided by the Institut Pasteur de Bangui, Bangui, République Centrafricaine, and the Institut Pasteur, Unit Lyssavirus Dynamics and Host Adaptation, WHO Collaborating Centre for Reference and Research on Rabies, Paris, France.
Cori et al. (submitted) A graph-based evidence synthesis approach to detecting outbreak clusters: an application to dog rabies.
Data from Transfer to R and documentation by Thibaut Jombart.
if (require(incidence) && require(ape)) { i <- incidence(rabies_car_2003$linelist$date, 28L) plot(i) tre <- nj(dist.dna(rabies_car_2003$dna)) plot(tre, main = "Neighbour-Joining tree") }#>