nwt_morts {cyclomort}R Documentation

Mortality data for Northwest territory boreal woodland caribou.

Description

Mortality data for Northwest territory boreal woodland caribou, anonymized and randomized by year, thereby retaining the multi-seasonal signal without, with grateful acknowledgements to A. Kelly and N. Larter.

Usage

data(nwt_morts)

Format

Data frame with 370 rows and the following columns:

id

ID of animal

start

Date of beginning of collaring

end

Date of death or censoring

status

"Mort" or "Cens" (dead or censored)

Source

Government of Northwest Territories, Canada

Examples

data(nwt_morts)
require(ggplot2); require(magrittr); require(plyr)
ggplot(nwt_morts %>% arrange(start) %>% mutate(id = factor(id, levels = id)),
aes(x = start, y = id, col = status)) +
  geom_errorbarh(aes(xmin = start, xmax = end))


[Package cyclomort version 1.0.2 Index]