-
Notifications
You must be signed in to change notification settings - Fork 1
/
mo_setup.Rmd
55 lines (50 loc) · 1.03 KB
/
mo_setup.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
50
51
52
53
54
55
---
title: "Setup"
output: html_document
---
#R dependencies
During the course, we will used R and Rstudio to run analyses. Please install the following packages already now, to be as efficient as possible during the exercises. Please open Rstudio and run the following command to install the necessary dependencies. You can just copy the code from the following chunk.
```{r, eval = FALSE}
install.packages(c(
"ape",
"devtools",
"scales",
"phytools",
"geiger",
"TreeSim",
"raster",
"tidyverse",
"countrycode",
"paleobioDB",
"rgdal",
"rgbif",
"ConR",
"rCat",
"rredlist",
"jsonlite",
"rgeos",
"optimx",
"FD",
"snow",
"parallel",
"rexpokit",
"cladoRcpp",
"ggtree",
"stringr",
"RColorBrewer",
"colorspace",
"viridis",
"jpeg",
"coda",
"sm",
"vioplot",
"taxize",
"bRacatus")
)
library(devtools)
install_github("ropensci/CoordinateCleaner")
install_github("azizka/speciesgeocodeR")
install_github("azizka/sampbias")
install_github("azizka/iucnn")
install_github('nmatzke/BioGeoBEARS')
```