├── .gitignore ├── A_D_Reports ├── build.sbt ├── hmda-spark-reporting │ ├── Jenkinsfile │ ├── README.md │ ├── build.sbt │ ├── spark-pi.yaml │ └── src │ │ └── main │ │ ├── resources │ │ └── application.conf │ │ └── scala │ │ └── com │ │ └── hmda │ │ └── reports │ │ ├── AggregateReports.scala │ │ ├── DisclosureReports.scala │ │ ├── model │ │ ├── AggregateModel.scala │ │ └── DisclosureModel.scala │ │ └── processing │ │ ├── AggregateProcessing.scala │ │ ├── BaseProcessing.scala │ │ ├── DisclosureProcessing.scala │ │ ├── IncomeRaceEthnicityProcessing.scala │ │ ├── MedianAgeProcessing.scala │ │ └── RaceGenderProcessing.scala └── kubernetes │ └── hmda-spark-reporting │ ├── hmda-spark-aggregate.yaml │ ├── hmda-spark-disclosure-scheduled.yaml │ ├── hmda-spark-disclosure.yaml │ ├── project │ └── build.properties │ └── spark-pi.yaml ├── LICENSE ├── Pipfile ├── TERMS.md ├── analysis_examples ├── 1. Plotting a Time Series of HMDA Filers from 2004-2017.ipynb ├── 1. Plotting a Time Series of HMDA Filers from 2004-2017.py ├── 2. Plotting a Time Series of HMDA Filers by Category.ipynb ├── 2. Plotting a Time Series of HMDA Filers by Category.py ├── HMDA_Panel_ID_Mapping_2017_2018.ipynb ├── analysis_output │ ├── charts │ │ ├── 1_filer_count_time_series.png │ │ └── 2_filer_count_by_category.png │ └── tables │ │ ├── 1_filer_count_time_series.txt │ │ └── 2_filer_count_by_category.txt └── sql_commands │ ├── 1_filer_count_time_series.sql │ └── 2_filer_count_by_category.sql ├── census └── readme.me ├── documentation_resources ├── AboutModifiedLAR.md ├── ModifiedLarWithExcel.md ├── code_sheets │ └── modified_LAR │ │ └── modified_LAR_2018.csv ├── example_images │ └── mlar_tutorial_images │ │ ├── Step2.JPG │ │ ├── Step3.JPG │ │ ├── Step4.JPG │ │ ├── Step5.JPG │ │ ├── Step6.JPG │ │ ├── Step8.JPG │ │ ├── Step9.JPG │ │ ├── Step_7_1.JPG │ │ └── Step_7_2.JPG └── schemas │ ├── lar │ ├── lar_2004_2013.csv │ ├── lar_2004_2013.md │ ├── lar_2014_2016.csv │ ├── lar_2014_2016.md │ ├── lar_2017.csv │ ├── lar_2017.md │ ├── lar_2018_2019.csv │ └── lar_2018_2019.md │ ├── mlar │ ├── mlar_header_2017.csv │ ├── mlar_header_2018.csv │ ├── mlar_schema_2017.csv │ └── mlar_schema_2018_2019.csv │ ├── panel │ ├── panel_2004_2013.csv │ ├── panel_2004_2013.md │ ├── panel_2014_2016.csv │ ├── panel_2014_2016.md │ ├── panel_2017.csv │ ├── panel_2017.md │ ├── panel_2018_2019.csv │ └── panel_2018_2019.md │ ├── schema_source_links.md │ └── ts │ ├── ts_2014_2016.csv │ ├── ts_2014_2016.md │ ├── ts_2017.csv │ ├── ts_2017.md │ ├── ts_2018_2019.csv │ └── ts_2018_2019.md ├── download_scripts ├── download_hmda.sh ├── unzip_all.sh ├── unzip_and_rename_lar.sh ├── unzip_panel.sh └── unzip_ts.sh ├── federal_pubs.md ├── hmda_data_links.md ├── load_scripts ├── SQL │ ├── create_and_load_lar_2004.sql │ ├── create_and_load_lar_2005.sql │ ├── create_and_load_lar_2006.sql │ ├── create_and_load_lar_2007.sql │ ├── create_and_load_lar_2008.sql │ ├── create_and_load_lar_2009.sql │ ├── create_and_load_lar_2010.sql │ ├── create_and_load_lar_2011.sql │ ├── create_and_load_lar_2012.sql │ ├── create_and_load_lar_2013.sql │ ├── create_and_load_lar_2014.sql │ ├── create_and_load_lar_2015.sql │ ├── create_and_load_lar_2016.sql │ ├── create_and_load_lar_2017.sql │ ├── create_and_load_lar_2018.sql │ ├── create_and_load_lar_2019.sql │ ├── create_and_load_lar_2020.sql │ ├── create_and_load_lar_2021.sql │ ├── create_and_load_lar_2022.sql │ ├── create_and_load_modified_lar_2017.sql │ ├── create_and_load_modified_lar_2018.sql │ ├── create_and_load_modified_lar_2019.sql │ ├── create_and_load_panel_2004.sql │ ├── create_and_load_panel_2005.sql │ ├── create_and_load_panel_2006.sql │ ├── create_and_load_panel_2007.sql │ ├── create_and_load_panel_2008.sql │ ├── create_and_load_panel_2009.sql │ ├── create_and_load_panel_2010.sql │ ├── create_and_load_panel_2011.sql │ ├── create_and_load_panel_2012.sql │ ├── create_and_load_panel_2013.sql │ ├── create_and_load_panel_2014.sql │ ├── create_and_load_panel_2015.sql │ ├── create_and_load_panel_2016.sql │ ├── create_and_load_panel_2017.sql │ ├── create_and_load_panel_2018.sql │ ├── create_and_load_panel_2019.sql │ ├── create_and_load_panel_2020.sql │ ├── create_and_load_panel_2021.sql │ ├── create_and_load_panel_2022.sql │ ├── create_and_load_ts_2004.sql │ ├── create_and_load_ts_2005.sql │ ├── create_and_load_ts_2006.sql │ ├── create_and_load_ts_2007.sql │ ├── create_and_load_ts_2008.sql │ ├── create_and_load_ts_2009.sql │ ├── create_and_load_ts_2010.sql │ ├── create_and_load_ts_2011.sql │ ├── create_and_load_ts_2012.sql │ ├── create_and_load_ts_2013.sql │ ├── create_and_load_ts_2014.sql │ ├── create_and_load_ts_2015.sql │ ├── create_and_load_ts_2016.sql │ ├── create_and_load_ts_2017.sql │ ├── create_and_load_ts_2018.sql │ ├── create_and_load_ts_2019.sql │ ├── create_and_load_ts_2020.sql │ ├── create_and_load_ts_2021.sql │ ├── create_and_load_ts_2022.sql │ └── create_hmda_db.sql ├── create_and_load_hmda.sh ├── create_and_load_lar_2004_2017.sh ├── create_and_load_lar_2004_2019.sh ├── create_and_load_lar_2004_2020.sh ├── create_and_load_lar_2004_2022.sh ├── create_and_load_panel_2004_2017.sh ├── create_and_load_panel_2004_2019.sh ├── create_and_load_panel_2004_2020.sh ├── create_and_load_panel_2004_2022.sh ├── create_and_load_ts_2004_2017.sh ├── create_and_load_ts_2004_2019.sh ├── create_and_load_ts_2004_2020.sh ├── create_and_load_ts_2004_2022.sh ├── create_hmda_db.sh ├── remove_tab_ts_2016.py ├── reset_path.py ├── write_data_paths.py └── write_data_paths.sh ├── readme.md └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/.gitignore -------------------------------------------------------------------------------- /A_D_Reports/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/A_D_Reports/build.sbt -------------------------------------------------------------------------------- /A_D_Reports/hmda-spark-reporting/Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/A_D_Reports/hmda-spark-reporting/Jenkinsfile -------------------------------------------------------------------------------- /A_D_Reports/hmda-spark-reporting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/A_D_Reports/hmda-spark-reporting/README.md -------------------------------------------------------------------------------- /A_D_Reports/hmda-spark-reporting/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/A_D_Reports/hmda-spark-reporting/build.sbt -------------------------------------------------------------------------------- /A_D_Reports/hmda-spark-reporting/spark-pi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/A_D_Reports/hmda-spark-reporting/spark-pi.yaml -------------------------------------------------------------------------------- /A_D_Reports/hmda-spark-reporting/src/main/resources/application.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/A_D_Reports/hmda-spark-reporting/src/main/resources/application.conf -------------------------------------------------------------------------------- /A_D_Reports/hmda-spark-reporting/src/main/scala/com/hmda/reports/AggregateReports.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/A_D_Reports/hmda-spark-reporting/src/main/scala/com/hmda/reports/AggregateReports.scala -------------------------------------------------------------------------------- /A_D_Reports/hmda-spark-reporting/src/main/scala/com/hmda/reports/DisclosureReports.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/A_D_Reports/hmda-spark-reporting/src/main/scala/com/hmda/reports/DisclosureReports.scala -------------------------------------------------------------------------------- /A_D_Reports/hmda-spark-reporting/src/main/scala/com/hmda/reports/model/AggregateModel.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/A_D_Reports/hmda-spark-reporting/src/main/scala/com/hmda/reports/model/AggregateModel.scala -------------------------------------------------------------------------------- /A_D_Reports/hmda-spark-reporting/src/main/scala/com/hmda/reports/model/DisclosureModel.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/A_D_Reports/hmda-spark-reporting/src/main/scala/com/hmda/reports/model/DisclosureModel.scala -------------------------------------------------------------------------------- /A_D_Reports/hmda-spark-reporting/src/main/scala/com/hmda/reports/processing/AggregateProcessing.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/A_D_Reports/hmda-spark-reporting/src/main/scala/com/hmda/reports/processing/AggregateProcessing.scala -------------------------------------------------------------------------------- /A_D_Reports/hmda-spark-reporting/src/main/scala/com/hmda/reports/processing/BaseProcessing.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/A_D_Reports/hmda-spark-reporting/src/main/scala/com/hmda/reports/processing/BaseProcessing.scala -------------------------------------------------------------------------------- /A_D_Reports/hmda-spark-reporting/src/main/scala/com/hmda/reports/processing/DisclosureProcessing.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/A_D_Reports/hmda-spark-reporting/src/main/scala/com/hmda/reports/processing/DisclosureProcessing.scala -------------------------------------------------------------------------------- /A_D_Reports/hmda-spark-reporting/src/main/scala/com/hmda/reports/processing/IncomeRaceEthnicityProcessing.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/A_D_Reports/hmda-spark-reporting/src/main/scala/com/hmda/reports/processing/IncomeRaceEthnicityProcessing.scala -------------------------------------------------------------------------------- /A_D_Reports/hmda-spark-reporting/src/main/scala/com/hmda/reports/processing/MedianAgeProcessing.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/A_D_Reports/hmda-spark-reporting/src/main/scala/com/hmda/reports/processing/MedianAgeProcessing.scala -------------------------------------------------------------------------------- /A_D_Reports/hmda-spark-reporting/src/main/scala/com/hmda/reports/processing/RaceGenderProcessing.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/A_D_Reports/hmda-spark-reporting/src/main/scala/com/hmda/reports/processing/RaceGenderProcessing.scala -------------------------------------------------------------------------------- /A_D_Reports/kubernetes/hmda-spark-reporting/hmda-spark-aggregate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/A_D_Reports/kubernetes/hmda-spark-reporting/hmda-spark-aggregate.yaml -------------------------------------------------------------------------------- /A_D_Reports/kubernetes/hmda-spark-reporting/hmda-spark-disclosure-scheduled.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/A_D_Reports/kubernetes/hmda-spark-reporting/hmda-spark-disclosure-scheduled.yaml -------------------------------------------------------------------------------- /A_D_Reports/kubernetes/hmda-spark-reporting/hmda-spark-disclosure.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/A_D_Reports/kubernetes/hmda-spark-reporting/hmda-spark-disclosure.yaml -------------------------------------------------------------------------------- /A_D_Reports/kubernetes/hmda-spark-reporting/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.2.6 2 | -------------------------------------------------------------------------------- /A_D_Reports/kubernetes/hmda-spark-reporting/spark-pi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/A_D_Reports/kubernetes/hmda-spark-reporting/spark-pi.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/LICENSE -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/Pipfile -------------------------------------------------------------------------------- /TERMS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/TERMS.md -------------------------------------------------------------------------------- /analysis_examples/1. Plotting a Time Series of HMDA Filers from 2004-2017.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/analysis_examples/1. Plotting a Time Series of HMDA Filers from 2004-2017.ipynb -------------------------------------------------------------------------------- /analysis_examples/1. Plotting a Time Series of HMDA Filers from 2004-2017.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/analysis_examples/1. Plotting a Time Series of HMDA Filers from 2004-2017.py -------------------------------------------------------------------------------- /analysis_examples/2. Plotting a Time Series of HMDA Filers by Category.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/analysis_examples/2. Plotting a Time Series of HMDA Filers by Category.ipynb -------------------------------------------------------------------------------- /analysis_examples/2. Plotting a Time Series of HMDA Filers by Category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/analysis_examples/2. Plotting a Time Series of HMDA Filers by Category.py -------------------------------------------------------------------------------- /analysis_examples/HMDA_Panel_ID_Mapping_2017_2018.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/analysis_examples/HMDA_Panel_ID_Mapping_2017_2018.ipynb -------------------------------------------------------------------------------- /analysis_examples/analysis_output/charts/1_filer_count_time_series.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/analysis_examples/analysis_output/charts/1_filer_count_time_series.png -------------------------------------------------------------------------------- /analysis_examples/analysis_output/charts/2_filer_count_by_category.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/analysis_examples/analysis_output/charts/2_filer_count_by_category.png -------------------------------------------------------------------------------- /analysis_examples/analysis_output/tables/1_filer_count_time_series.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/analysis_examples/analysis_output/tables/1_filer_count_time_series.txt -------------------------------------------------------------------------------- /analysis_examples/analysis_output/tables/2_filer_count_by_category.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/analysis_examples/analysis_output/tables/2_filer_count_by_category.txt -------------------------------------------------------------------------------- /analysis_examples/sql_commands/1_filer_count_time_series.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/analysis_examples/sql_commands/1_filer_count_time_series.sql -------------------------------------------------------------------------------- /analysis_examples/sql_commands/2_filer_count_by_category.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/analysis_examples/sql_commands/2_filer_count_by_category.sql -------------------------------------------------------------------------------- /census/readme.me: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/census/readme.me -------------------------------------------------------------------------------- /documentation_resources/AboutModifiedLAR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/documentation_resources/AboutModifiedLAR.md -------------------------------------------------------------------------------- /documentation_resources/ModifiedLarWithExcel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/documentation_resources/ModifiedLarWithExcel.md -------------------------------------------------------------------------------- /documentation_resources/code_sheets/modified_LAR/modified_LAR_2018.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/documentation_resources/code_sheets/modified_LAR/modified_LAR_2018.csv -------------------------------------------------------------------------------- /documentation_resources/example_images/mlar_tutorial_images/Step2.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/documentation_resources/example_images/mlar_tutorial_images/Step2.JPG -------------------------------------------------------------------------------- /documentation_resources/example_images/mlar_tutorial_images/Step3.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/documentation_resources/example_images/mlar_tutorial_images/Step3.JPG -------------------------------------------------------------------------------- /documentation_resources/example_images/mlar_tutorial_images/Step4.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/documentation_resources/example_images/mlar_tutorial_images/Step4.JPG -------------------------------------------------------------------------------- /documentation_resources/example_images/mlar_tutorial_images/Step5.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/documentation_resources/example_images/mlar_tutorial_images/Step5.JPG -------------------------------------------------------------------------------- /documentation_resources/example_images/mlar_tutorial_images/Step6.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/documentation_resources/example_images/mlar_tutorial_images/Step6.JPG -------------------------------------------------------------------------------- /documentation_resources/example_images/mlar_tutorial_images/Step8.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/documentation_resources/example_images/mlar_tutorial_images/Step8.JPG -------------------------------------------------------------------------------- /documentation_resources/example_images/mlar_tutorial_images/Step9.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/documentation_resources/example_images/mlar_tutorial_images/Step9.JPG -------------------------------------------------------------------------------- /documentation_resources/example_images/mlar_tutorial_images/Step_7_1.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/documentation_resources/example_images/mlar_tutorial_images/Step_7_1.JPG -------------------------------------------------------------------------------- /documentation_resources/example_images/mlar_tutorial_images/Step_7_2.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/documentation_resources/example_images/mlar_tutorial_images/Step_7_2.JPG -------------------------------------------------------------------------------- /documentation_resources/schemas/lar/lar_2004_2013.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/documentation_resources/schemas/lar/lar_2004_2013.csv -------------------------------------------------------------------------------- /documentation_resources/schemas/lar/lar_2004_2013.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/documentation_resources/schemas/lar/lar_2004_2013.md -------------------------------------------------------------------------------- /documentation_resources/schemas/lar/lar_2014_2016.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/documentation_resources/schemas/lar/lar_2014_2016.csv -------------------------------------------------------------------------------- /documentation_resources/schemas/lar/lar_2014_2016.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/documentation_resources/schemas/lar/lar_2014_2016.md -------------------------------------------------------------------------------- /documentation_resources/schemas/lar/lar_2017.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/documentation_resources/schemas/lar/lar_2017.csv -------------------------------------------------------------------------------- /documentation_resources/schemas/lar/lar_2017.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/documentation_resources/schemas/lar/lar_2017.md -------------------------------------------------------------------------------- /documentation_resources/schemas/lar/lar_2018_2019.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/documentation_resources/schemas/lar/lar_2018_2019.csv -------------------------------------------------------------------------------- /documentation_resources/schemas/lar/lar_2018_2019.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/documentation_resources/schemas/lar/lar_2018_2019.md -------------------------------------------------------------------------------- /documentation_resources/schemas/mlar/mlar_header_2017.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/documentation_resources/schemas/mlar/mlar_header_2017.csv -------------------------------------------------------------------------------- /documentation_resources/schemas/mlar/mlar_header_2018.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/documentation_resources/schemas/mlar/mlar_header_2018.csv -------------------------------------------------------------------------------- /documentation_resources/schemas/mlar/mlar_schema_2017.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/documentation_resources/schemas/mlar/mlar_schema_2017.csv -------------------------------------------------------------------------------- /documentation_resources/schemas/mlar/mlar_schema_2018_2019.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/documentation_resources/schemas/mlar/mlar_schema_2018_2019.csv -------------------------------------------------------------------------------- /documentation_resources/schemas/panel/panel_2004_2013.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/documentation_resources/schemas/panel/panel_2004_2013.csv -------------------------------------------------------------------------------- /documentation_resources/schemas/panel/panel_2004_2013.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/documentation_resources/schemas/panel/panel_2004_2013.md -------------------------------------------------------------------------------- /documentation_resources/schemas/panel/panel_2014_2016.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/documentation_resources/schemas/panel/panel_2014_2016.csv -------------------------------------------------------------------------------- /documentation_resources/schemas/panel/panel_2014_2016.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/documentation_resources/schemas/panel/panel_2014_2016.md -------------------------------------------------------------------------------- /documentation_resources/schemas/panel/panel_2017.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/documentation_resources/schemas/panel/panel_2017.csv -------------------------------------------------------------------------------- /documentation_resources/schemas/panel/panel_2017.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/documentation_resources/schemas/panel/panel_2017.md -------------------------------------------------------------------------------- /documentation_resources/schemas/panel/panel_2018_2019.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/documentation_resources/schemas/panel/panel_2018_2019.csv -------------------------------------------------------------------------------- /documentation_resources/schemas/panel/panel_2018_2019.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/documentation_resources/schemas/panel/panel_2018_2019.md -------------------------------------------------------------------------------- /documentation_resources/schemas/schema_source_links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/documentation_resources/schemas/schema_source_links.md -------------------------------------------------------------------------------- /documentation_resources/schemas/ts/ts_2014_2016.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/documentation_resources/schemas/ts/ts_2014_2016.csv -------------------------------------------------------------------------------- /documentation_resources/schemas/ts/ts_2014_2016.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/documentation_resources/schemas/ts/ts_2014_2016.md -------------------------------------------------------------------------------- /documentation_resources/schemas/ts/ts_2017.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/documentation_resources/schemas/ts/ts_2017.csv -------------------------------------------------------------------------------- /documentation_resources/schemas/ts/ts_2017.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/documentation_resources/schemas/ts/ts_2017.md -------------------------------------------------------------------------------- /documentation_resources/schemas/ts/ts_2018_2019.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/documentation_resources/schemas/ts/ts_2018_2019.csv -------------------------------------------------------------------------------- /documentation_resources/schemas/ts/ts_2018_2019.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/documentation_resources/schemas/ts/ts_2018_2019.md -------------------------------------------------------------------------------- /download_scripts/download_hmda.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/download_scripts/download_hmda.sh -------------------------------------------------------------------------------- /download_scripts/unzip_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/download_scripts/unzip_all.sh -------------------------------------------------------------------------------- /download_scripts/unzip_and_rename_lar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/download_scripts/unzip_and_rename_lar.sh -------------------------------------------------------------------------------- /download_scripts/unzip_panel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/download_scripts/unzip_panel.sh -------------------------------------------------------------------------------- /download_scripts/unzip_ts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/download_scripts/unzip_ts.sh -------------------------------------------------------------------------------- /federal_pubs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/federal_pubs.md -------------------------------------------------------------------------------- /hmda_data_links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/hmda_data_links.md -------------------------------------------------------------------------------- /load_scripts/SQL/create_and_load_lar_2004.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/load_scripts/SQL/create_and_load_lar_2004.sql -------------------------------------------------------------------------------- /load_scripts/SQL/create_and_load_lar_2005.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/load_scripts/SQL/create_and_load_lar_2005.sql -------------------------------------------------------------------------------- /load_scripts/SQL/create_and_load_lar_2006.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/load_scripts/SQL/create_and_load_lar_2006.sql -------------------------------------------------------------------------------- /load_scripts/SQL/create_and_load_lar_2007.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/load_scripts/SQL/create_and_load_lar_2007.sql -------------------------------------------------------------------------------- /load_scripts/SQL/create_and_load_lar_2008.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/load_scripts/SQL/create_and_load_lar_2008.sql -------------------------------------------------------------------------------- /load_scripts/SQL/create_and_load_lar_2009.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/load_scripts/SQL/create_and_load_lar_2009.sql -------------------------------------------------------------------------------- /load_scripts/SQL/create_and_load_lar_2010.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/load_scripts/SQL/create_and_load_lar_2010.sql -------------------------------------------------------------------------------- /load_scripts/SQL/create_and_load_lar_2011.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/load_scripts/SQL/create_and_load_lar_2011.sql -------------------------------------------------------------------------------- /load_scripts/SQL/create_and_load_lar_2012.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/load_scripts/SQL/create_and_load_lar_2012.sql -------------------------------------------------------------------------------- /load_scripts/SQL/create_and_load_lar_2013.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/load_scripts/SQL/create_and_load_lar_2013.sql -------------------------------------------------------------------------------- /load_scripts/SQL/create_and_load_lar_2014.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/load_scripts/SQL/create_and_load_lar_2014.sql -------------------------------------------------------------------------------- /load_scripts/SQL/create_and_load_lar_2015.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/load_scripts/SQL/create_and_load_lar_2015.sql -------------------------------------------------------------------------------- /load_scripts/SQL/create_and_load_lar_2016.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/load_scripts/SQL/create_and_load_lar_2016.sql -------------------------------------------------------------------------------- /load_scripts/SQL/create_and_load_lar_2017.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/load_scripts/SQL/create_and_load_lar_2017.sql -------------------------------------------------------------------------------- /load_scripts/SQL/create_and_load_lar_2018.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/load_scripts/SQL/create_and_load_lar_2018.sql -------------------------------------------------------------------------------- /load_scripts/SQL/create_and_load_lar_2019.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/load_scripts/SQL/create_and_load_lar_2019.sql -------------------------------------------------------------------------------- /load_scripts/SQL/create_and_load_lar_2020.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/load_scripts/SQL/create_and_load_lar_2020.sql -------------------------------------------------------------------------------- /load_scripts/SQL/create_and_load_lar_2021.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/load_scripts/SQL/create_and_load_lar_2021.sql -------------------------------------------------------------------------------- /load_scripts/SQL/create_and_load_lar_2022.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/load_scripts/SQL/create_and_load_lar_2022.sql -------------------------------------------------------------------------------- /load_scripts/SQL/create_and_load_modified_lar_2017.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/load_scripts/SQL/create_and_load_modified_lar_2017.sql -------------------------------------------------------------------------------- /load_scripts/SQL/create_and_load_modified_lar_2018.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/load_scripts/SQL/create_and_load_modified_lar_2018.sql -------------------------------------------------------------------------------- /load_scripts/SQL/create_and_load_modified_lar_2019.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/load_scripts/SQL/create_and_load_modified_lar_2019.sql -------------------------------------------------------------------------------- /load_scripts/SQL/create_and_load_panel_2004.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/load_scripts/SQL/create_and_load_panel_2004.sql -------------------------------------------------------------------------------- /load_scripts/SQL/create_and_load_panel_2005.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/load_scripts/SQL/create_and_load_panel_2005.sql -------------------------------------------------------------------------------- /load_scripts/SQL/create_and_load_panel_2006.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/load_scripts/SQL/create_and_load_panel_2006.sql -------------------------------------------------------------------------------- /load_scripts/SQL/create_and_load_panel_2007.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/load_scripts/SQL/create_and_load_panel_2007.sql -------------------------------------------------------------------------------- /load_scripts/SQL/create_and_load_panel_2008.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/load_scripts/SQL/create_and_load_panel_2008.sql -------------------------------------------------------------------------------- /load_scripts/SQL/create_and_load_panel_2009.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/load_scripts/SQL/create_and_load_panel_2009.sql -------------------------------------------------------------------------------- /load_scripts/SQL/create_and_load_panel_2010.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/load_scripts/SQL/create_and_load_panel_2010.sql -------------------------------------------------------------------------------- /load_scripts/SQL/create_and_load_panel_2011.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/load_scripts/SQL/create_and_load_panel_2011.sql -------------------------------------------------------------------------------- /load_scripts/SQL/create_and_load_panel_2012.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/load_scripts/SQL/create_and_load_panel_2012.sql -------------------------------------------------------------------------------- /load_scripts/SQL/create_and_load_panel_2013.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/load_scripts/SQL/create_and_load_panel_2013.sql -------------------------------------------------------------------------------- /load_scripts/SQL/create_and_load_panel_2014.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/load_scripts/SQL/create_and_load_panel_2014.sql -------------------------------------------------------------------------------- /load_scripts/SQL/create_and_load_panel_2015.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/load_scripts/SQL/create_and_load_panel_2015.sql -------------------------------------------------------------------------------- /load_scripts/SQL/create_and_load_panel_2016.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/load_scripts/SQL/create_and_load_panel_2016.sql -------------------------------------------------------------------------------- /load_scripts/SQL/create_and_load_panel_2017.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/load_scripts/SQL/create_and_load_panel_2017.sql -------------------------------------------------------------------------------- /load_scripts/SQL/create_and_load_panel_2018.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/load_scripts/SQL/create_and_load_panel_2018.sql -------------------------------------------------------------------------------- /load_scripts/SQL/create_and_load_panel_2019.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/load_scripts/SQL/create_and_load_panel_2019.sql -------------------------------------------------------------------------------- /load_scripts/SQL/create_and_load_panel_2020.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/load_scripts/SQL/create_and_load_panel_2020.sql -------------------------------------------------------------------------------- /load_scripts/SQL/create_and_load_panel_2021.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/load_scripts/SQL/create_and_load_panel_2021.sql -------------------------------------------------------------------------------- /load_scripts/SQL/create_and_load_panel_2022.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/load_scripts/SQL/create_and_load_panel_2022.sql -------------------------------------------------------------------------------- /load_scripts/SQL/create_and_load_ts_2004.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/load_scripts/SQL/create_and_load_ts_2004.sql -------------------------------------------------------------------------------- /load_scripts/SQL/create_and_load_ts_2005.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/load_scripts/SQL/create_and_load_ts_2005.sql -------------------------------------------------------------------------------- /load_scripts/SQL/create_and_load_ts_2006.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/load_scripts/SQL/create_and_load_ts_2006.sql -------------------------------------------------------------------------------- /load_scripts/SQL/create_and_load_ts_2007.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/load_scripts/SQL/create_and_load_ts_2007.sql -------------------------------------------------------------------------------- /load_scripts/SQL/create_and_load_ts_2008.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/load_scripts/SQL/create_and_load_ts_2008.sql -------------------------------------------------------------------------------- /load_scripts/SQL/create_and_load_ts_2009.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/load_scripts/SQL/create_and_load_ts_2009.sql -------------------------------------------------------------------------------- /load_scripts/SQL/create_and_load_ts_2010.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/load_scripts/SQL/create_and_load_ts_2010.sql -------------------------------------------------------------------------------- /load_scripts/SQL/create_and_load_ts_2011.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/load_scripts/SQL/create_and_load_ts_2011.sql -------------------------------------------------------------------------------- /load_scripts/SQL/create_and_load_ts_2012.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/load_scripts/SQL/create_and_load_ts_2012.sql -------------------------------------------------------------------------------- /load_scripts/SQL/create_and_load_ts_2013.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/load_scripts/SQL/create_and_load_ts_2013.sql -------------------------------------------------------------------------------- /load_scripts/SQL/create_and_load_ts_2014.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/load_scripts/SQL/create_and_load_ts_2014.sql -------------------------------------------------------------------------------- /load_scripts/SQL/create_and_load_ts_2015.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/load_scripts/SQL/create_and_load_ts_2015.sql -------------------------------------------------------------------------------- /load_scripts/SQL/create_and_load_ts_2016.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/load_scripts/SQL/create_and_load_ts_2016.sql -------------------------------------------------------------------------------- /load_scripts/SQL/create_and_load_ts_2017.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/load_scripts/SQL/create_and_load_ts_2017.sql -------------------------------------------------------------------------------- /load_scripts/SQL/create_and_load_ts_2018.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/load_scripts/SQL/create_and_load_ts_2018.sql -------------------------------------------------------------------------------- /load_scripts/SQL/create_and_load_ts_2019.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/load_scripts/SQL/create_and_load_ts_2019.sql -------------------------------------------------------------------------------- /load_scripts/SQL/create_and_load_ts_2020.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/load_scripts/SQL/create_and_load_ts_2020.sql -------------------------------------------------------------------------------- /load_scripts/SQL/create_and_load_ts_2021.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/load_scripts/SQL/create_and_load_ts_2021.sql -------------------------------------------------------------------------------- /load_scripts/SQL/create_and_load_ts_2022.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/load_scripts/SQL/create_and_load_ts_2022.sql -------------------------------------------------------------------------------- /load_scripts/SQL/create_hmda_db.sql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /load_scripts/create_and_load_hmda.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/load_scripts/create_and_load_hmda.sh -------------------------------------------------------------------------------- /load_scripts/create_and_load_lar_2004_2017.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/load_scripts/create_and_load_lar_2004_2017.sh -------------------------------------------------------------------------------- /load_scripts/create_and_load_lar_2004_2019.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/load_scripts/create_and_load_lar_2004_2019.sh -------------------------------------------------------------------------------- /load_scripts/create_and_load_lar_2004_2020.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/load_scripts/create_and_load_lar_2004_2020.sh -------------------------------------------------------------------------------- /load_scripts/create_and_load_lar_2004_2022.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/load_scripts/create_and_load_lar_2004_2022.sh -------------------------------------------------------------------------------- /load_scripts/create_and_load_panel_2004_2017.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/load_scripts/create_and_load_panel_2004_2017.sh -------------------------------------------------------------------------------- /load_scripts/create_and_load_panel_2004_2019.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/load_scripts/create_and_load_panel_2004_2019.sh -------------------------------------------------------------------------------- /load_scripts/create_and_load_panel_2004_2020.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/load_scripts/create_and_load_panel_2004_2020.sh -------------------------------------------------------------------------------- /load_scripts/create_and_load_panel_2004_2022.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/load_scripts/create_and_load_panel_2004_2022.sh -------------------------------------------------------------------------------- /load_scripts/create_and_load_ts_2004_2017.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/load_scripts/create_and_load_ts_2004_2017.sh -------------------------------------------------------------------------------- /load_scripts/create_and_load_ts_2004_2019.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/load_scripts/create_and_load_ts_2004_2019.sh -------------------------------------------------------------------------------- /load_scripts/create_and_load_ts_2004_2020.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/load_scripts/create_and_load_ts_2004_2020.sh -------------------------------------------------------------------------------- /load_scripts/create_and_load_ts_2004_2022.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/load_scripts/create_and_load_ts_2004_2022.sh -------------------------------------------------------------------------------- /load_scripts/create_hmda_db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/load_scripts/create_hmda_db.sh -------------------------------------------------------------------------------- /load_scripts/remove_tab_ts_2016.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/load_scripts/remove_tab_ts_2016.py -------------------------------------------------------------------------------- /load_scripts/reset_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/load_scripts/reset_path.py -------------------------------------------------------------------------------- /load_scripts/write_data_paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/load_scripts/write_data_paths.py -------------------------------------------------------------------------------- /load_scripts/write_data_paths.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/load_scripts/write_data_paths.sh -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfpb/HMDA_Data_Science_Kit/HEAD/readme.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pandas 2 | psycopg2 3 | matplotlib --------------------------------------------------------------------------------