-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprocess_data.sh
More file actions
executable file
·34 lines (26 loc) · 975 Bytes
/
process_data.sh
File metadata and controls
executable file
·34 lines (26 loc) · 975 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
mkdir -p data
mkdir -p figures
echo -n "generating data for figure 3..."
python3 plot-scripts/process_use_locality_folder.py results/pcs_static_win/ > data/figure3.csv
echo "Done!"
echo -n "generating figure 3..."
python3 plot-scripts/figure3_plot.py
echo "Done!"
echo -n "generating data for figure 4..."
python3 plot-scripts/process_use_locality_folder.py results/pcs_win_explore/ > data/figure4.csv
echo "Done!"
echo -n "generating figure 4..."
python3 plot-scripts/figure4_plot.py
echo "Done!"
echo -n "generating data for figure 5..."
python3 plot-scripts/process_use_locality_folder.py results/results_phold/ > data/figure5.csv
echo "Done!"
echo -n "generating figure 5..."
python3 plot-scripts/figure5_plot.py
echo "Done!"
echo -n "generating data for figure 6..."
python3 plot-scripts/process_use_locality_folder.py results/pcs_dyn_win/ > data/figure6.csv
echo "Done!"
echo -n "generating figure 6..."
python3 plot-scripts/figure6_plot.py
echo "Done!"