Skip to content

Commit

Permalink
Added trade.py and updated constants.py
Browse files Browse the repository at this point in the history
  • Loading branch information
rickecon committed Oct 22, 2024
1 parent 351a0db commit 622cedf
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
1 change: 1 addition & 0 deletions ogphl/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@


VAR_LABELS = {
"EX": "Trade value in exports"
"Y": "GDP ($Y_t$)",
"C": "Consumption ($C_t$)",
"L": "Labor ($L_t$)",
Expand Down
13 changes: 13 additions & 0 deletions ogphl/trade.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
"""
This is the trade module for OG-PHL
"""

import pandas as pd
import numpy as np
import os
from ogphl.constants import CONS_DICT, PROD_DICT


def export_share(imperfect_competition, dev_indic):
stuff
return exp_share

0 comments on commit 622cedf

Please sign in to comment.