Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added trade.py and updated constants.py #27

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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

Check warning on line 8 in ogphl/trade.py

View check run for this annotation

Codecov / codecov/patch

ogphl/trade.py#L5-L8

Added lines #L5 - L8 were not covered by tests


def export_share(imperfect_competition, dev_indic):
stuff
return exp_share

Check warning on line 13 in ogphl/trade.py

View check run for this annotation

Codecov / codecov/patch

ogphl/trade.py#L11-L13

Added lines #L11 - L13 were not covered by tests
Loading