forked from trias-project/unified-checklist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.Rmd
49 lines (42 loc) · 1.6 KB
/
index.Rmd
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
38
39
40
41
42
43
44
45
46
47
48
49
---
title: "Global Register of Introduced and Invasive Species - Belgium"
author: Peter Desmet, Lien Reyserhove, Damiano Oldoni
date: "`r Sys.Date()`"
site: bookdown::bookdown_site
github-repo: trias-project/unified-checklist
output:
bookdown::gitbook:
split_by: rmd
df_print: paged
config:
search: no
sharing:
facebook: no
twitter: yes
all: []
---
```{r index-setup, include = FALSE}
knitr::opts_chunk$set(
echo = FALSE, # Exclude code from output by default
warning = FALSE,
message = FALSE,
rownames.print = FALSE # Option for df_print = paged
)
```
This document contains and describes all the steps in creating a unified checklist of alien species in Belgium and was developed for the [Tracking Invasive Alien Species (TrIAS) project](http://trias-project.be). By running this document in R, it will create all the necessary data files for the unified checklist.
For more general information, see:
- [GitHub repository](https://github.com/trias-project/unified-checklist)
- [Dataset published on GBIF](https://doi.org/10.15468/xoidmd)
Load libraries:
```{r echo = TRUE}
library(tidyverse) # To do data science
library(tidylog) # To provide feedback on dplyr functions
library(magrittr) # To use %<>% pipes
library(here) # To find files
library(janitor) # To clean input data
library(openxlsx) # To write Excel files
library(digest) # To generate hashes
library(rgbif) # To use GBIF services
# devtools::install_github("trias-project/trias")
library(trias) # To use functions developed for TrIAS
```