The app allows users to add and analyze data for their populations of interest. Users can then explore how changing survival and recruitment rates would change expected outcomes for caribou.
This app was created by Sarah Endicott and Josie Hughes (Wildlife and Landscape Science Division, Environment and Climate Change Canada), and Danielle Cantin (Canadian Wildlife Service, Environment and Climate Change Canada).
Guy Larocque (Canadian Forest Service, Natural Resources Canada) and Rebecca Viejou (affiliation?) participated in conceptualizing the app and compiling available data.
To run the app you will need to install R and we recommend RStudio as well. Follow the instructions here to install both.
In addition you will need to install the Rtools application. You can do this by selecting the version corresponding to your version of R here. Or you can run the following code in the R console which should prompt Rtools to be installed.
install.packages("pkgbuild")
pkgbuild::check_build_tools()
Wait for the tool to download and install, following in instructions that pop-up. When installation is complete close R or RStudio and open it again in a fresh session for the changes to take effect.
You can install the CaribouDemographyBasicApp R package by running the following in the R console:
install.packages("remotes")
remotes::install_github("LandSciTech/CaribouDemographyBasicApp")
To launch the app in your default browser run the following lines:
library(CaribouDemographyBasicApp)
run_caribou_demog_app()
If you want to see the latest changes made to the app you will need to re-install the package from GitHub. Run the code below in the R console:
remotes::install_github("LandSciTech/CaribouDemographyBasicApp", upgrade = FALSE)