-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathplotter.sh
More file actions
executable file
·46 lines (34 loc) · 935 Bytes
/
plotter.sh
File metadata and controls
executable file
·46 lines (34 loc) · 935 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
34
35
36
37
38
39
40
41
42
43
44
45
46
#!/bin/bash
# go to repo root (directory containing this script)
cd "$(dirname "$0")"
echo "=== Running Baker parity plot ==="
python3 regression/baker/parity_plot.py
echo ""
echo "=== Running White parity plot ==="
python3 regression/white/parity_plot.py
echo ""
echo "=== Running GPR parity plot ==="
python3 regression/gpr/parity_plot.py
echo ""
echo "=== Running Chromium plot ==="
python3 regression/chromium/plot.py
echo ""
echo "=== Running Contact plot ==="
python3 regression/contact/plot.py
echo ""
echo "=== Running Cornell plot ==="
python3 regression/cornell/parity_plot.py
echo ""
echo "=== Running HBS plot ==="
python3 regression/hbs/plot.py
echo ""
echo "=== Running Kashibe plot ==="
python3 regression/kashibe/plot.py
echo ""
echo "=== Running Oxidation plot ==="
python3 regression/oxidation/plot.py
echo ""
echo "=== Running Talip plot ==="
python3 regression/talip/plot.py
echo ""
echo "=== Done ==="