-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathload_fusico_data.R
59 lines (47 loc) · 2.34 KB
/
load_fusico_data.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
##############################################################################/
##############################################################################/
#Data for the analysis and figure production of the fusicoccum project
##############################################################################/
##############################################################################/
#loading the packages necessary for the analysis
library(rgdal)
library(plotrix)
library(classInt)
library(mapplots)
library(rgeos)
library(drc)
library(gdata)
library(RColorBrewer)
##############################################################################/
#loading the geographical data####
##############################################################################/
#the geographical layer used here were downloaded on the IGN (the French
#Institut of Geographic and forest information) website:
#http://professionnels.ign.fr/adminexpress and then turned into a .RData file
#The version of the dataset used here is the "Edition Novembre 2017"
#These data are under an open licence:
#https://www.etalab.gouv.fr/wp-content/uploads/2014/05/Licence_Ouverte.pdf
#loading the different administrative unit levels in France
load("data/DEP_SHP.RData")
load("data/REG_SHP.Rdata")
load("data/COM_SHP.Rdata")
##############################################################################/
#loading the bioassay results data####
##############################################################################/
datafusamy<-read.table("data/fusicodat.txt",header=TRUE,sep="\t",
stringsAsFactors=TRUE)
datafuspop<-read.table("data/fusipopdat.txt",header=TRUE,sep="\t",
stringsAsFactors=TRUE)
datatemp<-read.table("data/fusico2020.txt",header=TRUE,sep="\t",
stringsAsFactors=TRUE)
##############################################################################/
#Writing info session for reproducibility####
##############################################################################/
sink("session_info.txt")
print(sessioninfo::session_info())
sink()
#inspired by an R gist of François Briatte:
#https://gist.github.com/briatte/14e47fb0cfb8801f25c889edea3fcd9b
##############################################################################/
#END
##############################################################################/