-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrun_all_scripts.R
36 lines (24 loc) · 1018 Bytes
/
run_all_scripts.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
print(paste("setup and configuration"))
source('init.R')
print(paste("convert bartlein moisture data from alpha to MI"))
source("Dat0_B_convert_splash.R")
print(paste("Compare cleator versions"))
source("Dat1_compare_CL_versions.R")
# no need to run this. A (better) data boxplot is produced in DM1
# source("Dat2_obs_boxplots.R")
print(paste("Compare Bartlein with Cleator 244 dataset"))
source("Dat3_compare_B_CL.R")
print(paste("extract PMIP4 model metadata"))
source("Mod0_metadata.R")
print(paste("Correct netcdf issues and plot mon anomalies"))
source("Mod1_homog_nc_plot_mon.R")
print(paste("compute model variables for DM comparison"))
source("Mod2_create_vars_nc.R")
print(paste("data-model latitudinal boxplots"))
source("DM1_boxplots.R.R")
print(paste("run DM comparison and produce benchmarking scores"))
source("DM2_run_comparison_scores.R")
print(paste("produce DM scatterplots"))
source("DM3_scatterplots.R")
print(paste("create traffic light plot with scores"))
source("DM4_plot_scores.R")