-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.R
More file actions
82 lines (61 loc) · 1.41 KB
/
setup.R
File metadata and controls
82 lines (61 loc) · 1.41 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
# general setup script for all workflows
# install (if necessary) and load all required packages ----------------
packageLoad <-
function(x) {
for (i in 1:length(x)) {
if (!x[i] %in% installed.packages()) {
install.packages(x[i])
}
library(x[i], character.only = TRUE)
}
}
# vector of packages to load (add new packages to the end of this list)
packages <- c(
'sf',
"mapview",
"ggpubr",
"plotly",
"tigris",
"terra",
"stars",
"remotes",
'devtools',
"stars",
"janitor",
"akima",
"tmap",
"spocc",
"furrr",
"SDMtune",
"ini",
"tidycensus",
"shiny",
"patchwork",
"leaflegend",
"rmapshaper",
"geojsonio")
# tack tidyverse on the end always to keep tidyverse functions as default for function conflicts
packages <- c(packages, "tidyverse")
packageLoad(packages)
# install github dev version of ENMeval to use parellization for null models
if (!"ENMeval" %in% installed.packages())
{
devtools::install_github("jamiemkass/ENMeval")
}
if (packageVersion("ENMeval") < "2.0.5") {
devtools::install_github("jamiemkass/ENMeval")
}
library("ENMeval")
# install habicon
if (!"habicon" %in% installed.packages()) {
devtools::install_github("ccmothes/habicon")
}
library(habicon)
# source all functions --------------------------
purrr::map(list.files(
path = "src/",
pattern = "*.R",
full.names = TRUE,
recursive = TRUE
),
source)