bboudata
provides sample survival and recruitment data for boreal caribou.
You can install the latest version of bboudata
from GitHub with:
# install.packages("remotes")
remotes::install_github("poissonconsulting/bboudata")
library(tibble) # to enhance readability
bboudata::bbourecruit_a
#> # A tibble: 696 × 9
#> PopulationName Year Month Day Cows Bulls UnknownAdults Yearlings Calves
#> <chr> <int> <int> <int> <int> <int> <int> <int> <int>
#> 1 A 1990 3 9 1 1 0 0 0
#> 2 A 1990 3 9 5 1 0 0 0
#> 3 A 1990 3 9 4 1 0 0 0
#> 4 A 1990 3 9 2 0 0 0 0
#> 5 A 1990 3 9 6 0 0 0 0
#> # ℹ 691 more rows
bboudata::bbousurv_a
#> # A tibble: 364 × 6
#> PopulationName Year Month StartTotal MortalitiesCertain MortalitiesUncertain
#> <chr> <int> <int> <int> <int> <int>
#> 1 A 1986 1 0 0 0
#> 2 A 1986 2 8 0 0
#> 3 A 1986 3 8 0 0
#> 4 A 1986 4 8 0 0
#> 5 A 1986 5 8 0 0
#> # ℹ 359 more rows
Please report any issues.
Please note that the bboudata project is released with a Contributor Code of Conduct. By contributing to this project, you agree to abide by its terms.