-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathall_figures.py
More file actions
28 lines (20 loc) · 1002 Bytes
/
all_figures.py
File metadata and controls
28 lines (20 loc) · 1002 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
import os
output_folder = os.path.abspath(
os.path.join(os.path.dirname(os.path.abspath(__file__)), "figures")
)
os.makedirs(output_folder, exist_ok=True)
# run all the figures scripts
print("Executing figures_asset_pricing.py")
os.system("python figures_asset_pricing.py")
print("Executing figures_neoclassical_growth_concave_convex.py")
os.system("python figures_neoclassical_growth_concave_convex.py")
print("Executing figures_neoclassical_growth_baseline.py")
os.system("python figures_neoclassical_growth_baseline.py")
print("Executing figures_neoclassical_growth_robustness.py")
os.system("python figures_neoclassical_growth_robustness.py")
print("Executing figures_optimal_advertising.py")
os.system("python figures_optimal_advertising.py")
print("Executing tables_neoclassical_growth.py")
os.system("python tables_neoclassical_growth.py")
print("Executing figures_neoclassical_human_capital.py")
os.system("python figures_neoclassical_human_capital.py")