Skip to content

Commit

Permalink
Directly call out where the bin value outside the bin range
Browse files Browse the repository at this point in the history
  • Loading branch information
afontani committed Oct 1, 2024
1 parent e1da4b4 commit d430423
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions measures/ResStockArguments/measure.rb
Original file line number Diff line number Diff line change
Expand Up @@ -472,27 +472,27 @@ def run(model, runner, user_arguments)
['1500-1999', HPXML::ResidentialTypeApartment, 'No'] => 1603, # From RECS2020
['1500-1999', HPXML::ResidentialTypeManufactured, 'No'] => 1615, # From RECS2020
['2000-2499', HPXML::ResidentialTypeSFD, 'Yes'] => 2214, # From RECS2020
['2000-2499', HPXML::ResidentialTypeSFD, 'No'] => 1982, # From RECS2020
['2000-2499', HPXML::ResidentialTypeSFD, 'No'] => 1982, # From RECS2020 - less than the bin see note above
['2000-2499', HPXML::ResidentialTypeSFA, 'Yes'] => 2178, # From RECS2020
['2000-2499', HPXML::ResidentialTypeSFA, 'No'] => 1847, # From RECS2020
['2000-2499', HPXML::ResidentialTypeSFA, 'No'] => 1847, # From RECS2020 - less than the bin see note above
['2000-2499', HPXML::ResidentialTypeApartment, 'No'] => 2135, # From RECS2020
['2000-2499', HPXML::ResidentialTypeManufactured, 'No'] => 2082, # From RECS2020
['2500-2999', HPXML::ResidentialTypeSFD, 'Yes'] => 2663, # From RECS2020
['2500-2999', HPXML::ResidentialTypeSFD, 'No'] => 2296, # From RECS2020
['2500-2999', HPXML::ResidentialTypeSFD, 'No'] => 2296, # From RECS2020 - less than the bin see note above
['2500-2999', HPXML::ResidentialTypeSFA, 'Yes'] => 2570, # From RECS2020
['2500-2999', HPXML::ResidentialTypeSFA, 'No'] => 2079, # From RECS2020
['2500-2999', HPXML::ResidentialTypeSFA, 'No'] => 2079, # From RECS2020 - less than the bin see note above
['2500-2999', HPXML::ResidentialTypeApartment, 'No'] => 2818, # From RECS2020
['2500-2999', HPXML::ResidentialTypeManufactured, 'No'] => 2616, # From RECS2020
['3000-3999', HPXML::ResidentialTypeSFD, 'Yes'] => 3353, # From RECS2020
['3000-3999', HPXML::ResidentialTypeSFD, 'No'] => 2690, # From RECS2020
['3000-3999', HPXML::ResidentialTypeSFD, 'No'] => 2690, # From RECS2020 - less than the bin see note above
['3000-3999', HPXML::ResidentialTypeSFA, 'Yes'] => 3336, # From RECS2020
['3000-3999', HPXML::ResidentialTypeSFA, 'No'] => 2650, # From RECS2020
['3000-3999', HPXML::ResidentialTypeSFA, 'No'] => 2650, # From RECS2020 - less than the bin see note above
['3000-3999', HPXML::ResidentialTypeApartment, 'No'] => 3106, # From RECS2020
['3000-3999', HPXML::ResidentialTypeManufactured, 'No'] => 3000, # From RECS2020
['4000+', HPXML::ResidentialTypeSFD, 'Yes'] => 4862, # From RECS2020
['4000+', HPXML::ResidentialTypeSFD, 'No'] => 3682, # From RECS2020
['4000+', HPXML::ResidentialTypeSFD, 'No'] => 3682, # From RECS2020 - less than the bin see note above
['4000+', HPXML::ResidentialTypeSFA, 'Yes'] => 4792, # From RECS2020
['4000+', HPXML::ResidentialTypeSFA, 'No'] => 3377, # From RECS2020
['4000+', HPXML::ResidentialTypeSFA, 'No'] => 3377, # From RECS2020 - less than the bin see note above
['4000+', HPXML::ResidentialTypeApartment, 'No'] => 5000, # From RECS2020
['4000+', HPXML::ResidentialTypeManufactured, 'No'] => 5587, # From AHS 2021, 1 detached and mobile home weighted average
}
Expand Down

0 comments on commit d430423

Please sign in to comment.