Skip to content

Instantly share code, notes, and snippets.

@BinarySpoon
Last active October 23, 2020 10:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BinarySpoon/c9203007a7b8bdd0500bc8ddcf5606df to your computer and use it in GitHub Desktop.
Save BinarySpoon/c9203007a7b8bdd0500bc8ddcf5606df to your computer and use it in GitHub Desktop.
# Get All relevant constraints -->
housing_data = convert_housing_data_to_quarters()
startQ = get_recession_start()
bottomQ = get_recession_bottom()
endQ = get_recession_end()
# Recession Timeframe -->
housing_data['Delta'] = housing_data[bottomQ] - housing_data[startQ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment