-
Notifications
You must be signed in to change notification settings - Fork 0
/
run_examples.sh
executable file
·34 lines (23 loc) · 1019 Bytes
/
run_examples.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
#!/bin/bash
echo "running sampling efficiency simulation..."
R CMD BATCH --vanilla code/run_samplingEfficiency.R
echo "running computational requirements simulation..."
R CMD BATCH --vanilla code/run_computationalRequirement.R
echo "running varying blocks of fixed correlation model..."
R CMD BATCH --vanilla code/run_varyingBlksFixedCorr.R
echo "running fixed blocks of varying correlation model..."
R CMD BATCH --vanilla code/run_fixedBlksVaryingCorr.R
echo "running random effects model..."
R CMD BATCH --vanilla code/run_litters.R
echo "running auto-regressive model..."
R CMD BATCH --vanilla code/run_ice.R
echo "running state space independent model..."
R CMD BATCH --vanilla code/run_SSMindependent.R
echo "running state space correlated model..."
R CMD BATCH --vanilla code/run_SSMcorrelated.R
echo "running spatial model..."
R CMD BATCH --vanilla code/run_spatial.R
echo "running GLMM model..."
R CMD BATCH --vanilla code/run_mhp.R
echo "running test model..."
R CMD BATCH --vanilla code/run_test.R