-
Notifications
You must be signed in to change notification settings - Fork 3
/
mo_setup.Rmd
51 lines (46 loc) · 991 Bytes
/
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
---
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",
"rredlist",
"jsonlite",
"rgeos",
"optimx",
"FD",
"snow",
"parallel",
"rexpokit",
"cladoRcpp",
"ggtree",
"stringr",
"RColorBrewer",
"colorspace",
"viridis",
"jpeg",
"coda",
"sm",
"vioplot")
)
library(devtools)
install_github("ropensci/CoordinateCleaner")
install_github("azizka/speciesgeocodeR")
install_github("azizka/sampbias")
install_github('nmatzke/BioGeoBEARS')
```