-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathmake.R
37 lines (22 loc) · 857 Bytes
/
make.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# Download PanTHERIA and WWF WildFinder databases
#
# This project aims to download PanTHERIA and WWF WildFinder databases. It is
# structured as a research compendium to be reproducible. This is the result of
# the Practice 1 of the training course Reproducible Research in Computational
# Ecology available at:
# <https://rdatatoolbox.github.io/chapters/ex-compendium.html>.
#
# Author: Jane Doe
# Email: [email protected]
# Date: 2024/12/02
# Setup project ----
## Install packages ----
devtools::install_deps(upgrade = "never")
## Load packages & functions ----
devtools::load_all()
# Run project ----
## Download raw data ----
source(here::here("analyses", "download-data.R"))
## Make report ----
quarto::quarto_render(input = here::here("index.qmd"),
execute_params = list(mammals_family = "Canidae"))