-
Notifications
You must be signed in to change notification settings - Fork 0
/
mainDipperTT.sh
executable file
·72 lines (60 loc) · 2.08 KB
/
mainDipperTT.sh
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
60
61
62
63
64
65
66
67
68
69
70
71
#############################################
## Dipper data - TT model
#############################################
#############################################
## 1) Compute CPPP
#############################################
## Compute CPPP
Rscript 1_runCPPP.R \
--dirExample=sec6_examples/dipperTT \
--dataPath="sec6_examples/dipperTT/dipperData.RData" \
--runOriginal=TRUE \
--nCalibrationReplicates=1000 \
--nIterMCMC=1000 \
--returnSamples=TRUE \
--returnDiscrepancies=TRUE \
--calcDisc=TRUE \
## Compute "naive" CPPP
## using the same number of MCMC samples as in the original MCMC
# Rscript 1_runCPPP.R \
# --dirExample=sec6_examples/dipperTT \
# --dataPath="sec6_examples/dipperTT/dipperData.RData" \
# --runOriginal=TRUE \
# --nCalibrationReplicates=1000 \
# --nIterMCMC=10000 \
# --returnSamples=TRUE \
# --returnDiscrepancies=TRUE \
# --calcDisc=TRUE
#############################################
## 2) Compute CPPP variance via Monte Carlo
#############################################
Rscript 2_runMonteCarloCPPP.R \
--task=1 \
--dataPath="sec6_examples/dipperTT/dipperData.txt" \
--dirExample=sec6_examples/dipperTT \
--runOriginal=TRUE \
--nCalibrationReplicates=1000 \
--nIterMCMC=1000 \
--returnSamples=FALSE \
--returnDiscrepancies=TRUE \
--calcDisc=TRUE
#############################################
## 3) Compute CPPP variance estimates
#############################################
## Compute Monte Carlo baseline (baseline)
Rscript 3_computeMCSE.R \
--dirExample="sec6_examples/dipperTT/montecarlo/" \
--indexStat=1
## Compute plug-in variance estimate and coverage
Rscript 3_computePluginSE.R \
--filename="sec6_examples/dipperTT/results_nCRep_1000_nIter_1000.rds" \
--indexStat=1
## Compute bootstrap variance estimates and coverage
Rscript 3_computeBootstrapSE.R \
--filename="sec6_examples/dipperTT/results_nCRep_1000_nIter_1000.rds" \
--indexStat=1 \
--bootIters=100
#############################################
## 4) Plot results
#############################################
Rscript 4_plotResults.R --dirExample="sec6_examples/dipperTT" --plotTitle="Dipper example - T/T model"