Skip to content

Commit

Permalink
Updating options lookup tsv to pass national integrity check for late…
Browse files Browse the repository at this point in the history
…st measures.
  • Loading branch information
joseph-robertson committed Aug 9, 2017
1 parent 459786e commit 336d503
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 45 deletions.
2 changes: 1 addition & 1 deletion data/ahs/input.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def __init__(self, file):
self.session = pd.read_csv(file, index_col=['CONTROL'])

def hvac_system_cooling_type(self):
df = pd.DataFrame({'Dependency=HVAC System Cooling': ['None', 'AC, SEER 8', 'AC, SEER 10', 'AC, SEER 13', 'AC, SEER 15', 'Room AC, EER 8.5, 20% Conditioned', 'Room AC, EER 10.7, 20% Conditioned'], 'Option=Central': [0, 1, 1, 1, 1, 0, 0], 'Option=Room':[0, 0, 0, 0, 0, 1, 1], 'Option=None':[1, 0, 0, 0, 0, 0, 0]}).set_index('Dependency=HVAC System Cooling')
df = pd.DataFrame({'Dependency=HVAC System Cooling': ['None', 'AC, SEER 8', 'AC, SEER 10', 'AC, SEER 13', 'AC, SEER 15', 'FIXME Room AC, EER 8.5, 20% Conditioned', 'FIXME Room AC, EER 10.7, 20% Conditioned'], 'Option=Central': [0, 1, 1, 1, 1, 0, 0], 'Option=Room':[0, 0, 0, 0, 0, 1, 1], 'Option=None':[1, 0, 0, 0, 0, 0, 0]}).set_index('Dependency=HVAC System Cooling')
return df

def federal_poverty_level(self):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ AC, SEER 8 1 0 0
AC, SEER 10 1 0 0
AC, SEER 13 1 0 0
AC, SEER 15 1 0 0
Room AC, EER 8.5, 20% Conditioned 0 0 1
Room AC, EER 10.7, 20% Conditioned 0 0 1
FIXME Room AC, EER 8.5, 20% Conditioned 0 0 1
FIXME Room AC, EER 10.7, 20% Conditioned 0 0 1

0 comments on commit 336d503

Please sign in to comment.