-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRUN_code.R
More file actions
33 lines (23 loc) · 750 Bytes
/
RUN_code.R
File metadata and controls
33 lines (23 loc) · 750 Bytes
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
#### Conditional SWG for temperature in different cities ---------------------
city.names = c("Paris", "Madrid", "Stockholm")
for (city in city.names){
source("conditional_SWG_temperature.R")
rm(list=ls(all=TRUE))
}
####
#### FAR ---------------------------------------------------------------------
####
#### Changes of intensity ----------------------------------------------------
city.names = c("Paris", "Madrid", "Stockholm")
for (city in city.names){
source("changes_of_intensity.R")
rm(list=ls(all=TRUE))
}
####
#### Anomaly maps ------------------------------------------------------------
city.names = c("Paris", "Madrid", "Stockholm")
for (city in city.names){
source("anomaly_maps.R")
rm(list=ls(all=TRUE))
}
####