nwt_morts: Mortality data for Northwest territory boreal woodland...

Description Usage Format Source Examples

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

1

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

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

cyclomort documentation built on Aug. 20, 2020, 5:06 p.m.