├── .dockerignore ├── .flake8 ├── .github ├── labels.yml ├── release-drafter.yml └── workflows │ ├── labeler.yml │ ├── release.yml │ └── tests.yml ├── .gitignore ├── .pre-commit-config.yaml ├── Dockerfile ├── LICENSE ├── README.md ├── _config.yml ├── _toc.yml ├── auto-office.ipynb ├── auto-research-outputs.md ├── code-advanced.ipynb ├── code-advcd-best-practice.ipynb ├── code-basics.ipynb ├── code-best-practice.md ├── code-further-advanced.ipynb ├── code-preliminaries.md ├── code-where.ipynb ├── coding-for-economists-quickstart.ipynb ├── coming-from-excel.md ├── coming-from-matlab.md ├── coming-from-r.md ├── coming-from-stata.md ├── contributing.md ├── craft-extended-abstracts.md ├── craft-generating-ideas.md ├── craft-intro.md ├── craft-referee.md ├── craft-research-blogs.md ├── craft-search.md ├── craft-technical-reports.md ├── craft-writing-papers.md ├── craft_diss_pyramid.py ├── data-advanced.ipynb ├── data-analysis-quickstart.ipynb ├── data-boolean.ipynb ├── data-categorical.ipynb ├── data-databases.ipynb ├── data-exploratory-analysis.ipynb ├── data-extraction.ipynb ├── data-intro.ipynb ├── data-joining-data.ipynb ├── data-missing-values.ipynb ├── data-numbers.ipynb ├── data-read-and-write.md ├── data-sharing.md ├── data-spreadsheets.ipynb ├── data-transformation.ipynb ├── data ├── Chinook.sqlite ├── Nov2020_MPR_CPI_fan.csv ├── ames_iowa_house_prices.csv ├── bake_sale.xlsx ├── beijing_pm.csv ├── berkeley_data.pkl ├── book_mask.png ├── capop.dta ├── characters.csv ├── chicago.csv ├── data_not_stored │ └── .gitkeep ├── deaths.xlsx ├── flights.parquet ├── flights1kBTS.csv ├── geo │ ├── ashe_lad_median_pay_2020.csv │ ├── cities │ │ ├── ne_110m_populated_places.README.html │ │ ├── ne_110m_populated_places.VERSION.txt │ │ ├── ne_110m_populated_places.cpg │ │ ├── ne_110m_populated_places.dbf │ │ ├── ne_110m_populated_places.prj │ │ ├── ne_110m_populated_places.shp │ │ └── ne_110m_populated_places.shx │ ├── cv_ldn_deaths.parquet │ ├── detailed_world │ │ ├── ne_110m_admin_0_countries.README.html │ │ ├── ne_110m_admin_0_countries.VERSION.txt │ │ ├── ne_110m_admin_0_countries.cpg │ │ ├── ne_110m_admin_0_countries.dbf │ │ ├── ne_110m_admin_0_countries.prj │ │ ├── ne_110m_admin_0_countries.shp │ │ └── ne_110m_admin_0_countries.shx │ ├── rivers │ │ ├── rivers.cpg │ │ ├── rivers.dbf │ │ ├── rivers.prj │ │ ├── rivers.shp │ │ └── rivers.shx │ ├── uk_lad │ │ ├── Local_Authority_Districts__May_2020__UK_BUC.cpg │ │ ├── Local_Authority_Districts__May_2020__UK_BUC.dbf │ │ ├── Local_Authority_Districts__May_2020__UK_BUC.prj │ │ ├── Local_Authority_Districts__May_2020__UK_BUC.shp │ │ ├── Local_Authority_Districts__May_2020__UK_BUC.shx │ │ └── Local_Authority_Districts__May_2020__UK_BUC.xml │ └── world │ │ ├── ne_110m_admin_0_countries.shp │ │ ├── ne_110m_admin_0_countries.shx │ │ ├── ne_50m_admin_0_countries.README.html │ │ ├── ne_50m_admin_0_countries.VERSION.txt │ │ ├── ne_50m_admin_0_countries.cpg │ │ ├── ne_50m_admin_0_countries.dbf │ │ ├── ne_50m_admin_0_countries.prj │ │ ├── ne_50m_admin_0_countries.shp │ │ └── ne_50m_admin_0_countries.shx ├── ilpop.dta ├── owid_gapminder.csv ├── pdf_with_table.pdf ├── penguins.xlsx ├── priestley-timeline.csv ├── smith_won.txt ├── starwars.csv ├── students.xlsx └── tfl_small.parquet ├── data_set_prep.py ├── econmt-bayes-bambi.ipynb ├── econmt-bayesian.ipynb ├── econmt-causal-inference.md ├── econmt-diagnostics.ipynb ├── econmt-generalised-models.ipynb ├── econmt-probability-random.ipynb ├── econmt-regression.ipynb ├── econmt-statistics.ipynb ├── environment.yml ├── favicon.ico ├── further-resources.md ├── geo-intro.ipynb ├── geo-vis.ipynb ├── img ├── .gitkeep ├── gapminder.gif ├── in_that_case.jpg ├── makefile_example.png ├── preattentive.png ├── reproducibiity_relocates_time.png ├── sin_bead.gif └── vscode_layout.png ├── intro.md ├── macro-models.ipynb ├── maths-abstract.ipynb ├── maths-numerical.ipynb ├── ml-data.ipynb ├── ml-intro.ipynb ├── ml-sup.ipynb ├── ml-unsup.ipynb ├── plot_style.txt ├── pyproject.toml ├── references.bib ├── ruff.toml ├── scratch └── .gitkeep ├── smith_lovelace.png ├── text-intro.ipynb ├── text-nlp.ipynb ├── text-regex.ipynb ├── time-fcasts-env.ipynb ├── time-intro.ipynb ├── time-nowcasting.ipynb ├── time-series.ipynb ├── utilities.py ├── version_bumper.py ├── vis-animation.ipynb ├── vis-common-plots-one.ipynb ├── vis-common-plots-two.ipynb ├── vis-dashboards.md ├── vis-intro.ipynb ├── vis-letsplot.ipynb ├── vis-matplotlib.ipynb ├── vis-narrative.ipynb ├── vis-plotnine.ipynb ├── vis-seaborn.ipynb ├── vis-tables.ipynb ├── workflow-basics.ipynb ├── wrkflow-command-line.md ├── wrkflow-environments.md ├── wrkflow-markdown.md ├── wrkflow-quarto.md ├── wrkflow-rap.ipynb ├── wrkflow-version-control.md └── zreferences.md /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/.dockerignore -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | max-line-length = 160 -------------------------------------------------------------------------------- /.github/labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/.github/labels.yml -------------------------------------------------------------------------------- /.github/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/.github/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/.github/workflows/labeler.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/_config.yml -------------------------------------------------------------------------------- /_toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/_toc.yml -------------------------------------------------------------------------------- /auto-office.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/auto-office.ipynb -------------------------------------------------------------------------------- /auto-research-outputs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/auto-research-outputs.md -------------------------------------------------------------------------------- /code-advanced.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/code-advanced.ipynb -------------------------------------------------------------------------------- /code-advcd-best-practice.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/code-advcd-best-practice.ipynb -------------------------------------------------------------------------------- /code-basics.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/code-basics.ipynb -------------------------------------------------------------------------------- /code-best-practice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/code-best-practice.md -------------------------------------------------------------------------------- /code-further-advanced.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/code-further-advanced.ipynb -------------------------------------------------------------------------------- /code-preliminaries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/code-preliminaries.md -------------------------------------------------------------------------------- /code-where.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/code-where.ipynb -------------------------------------------------------------------------------- /coding-for-economists-quickstart.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/coding-for-economists-quickstart.ipynb -------------------------------------------------------------------------------- /coming-from-excel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/coming-from-excel.md -------------------------------------------------------------------------------- /coming-from-matlab.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/coming-from-matlab.md -------------------------------------------------------------------------------- /coming-from-r.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/coming-from-r.md -------------------------------------------------------------------------------- /coming-from-stata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/coming-from-stata.md -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/contributing.md -------------------------------------------------------------------------------- /craft-extended-abstracts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/craft-extended-abstracts.md -------------------------------------------------------------------------------- /craft-generating-ideas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/craft-generating-ideas.md -------------------------------------------------------------------------------- /craft-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/craft-intro.md -------------------------------------------------------------------------------- /craft-referee.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/craft-referee.md -------------------------------------------------------------------------------- /craft-research-blogs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/craft-research-blogs.md -------------------------------------------------------------------------------- /craft-search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/craft-search.md -------------------------------------------------------------------------------- /craft-technical-reports.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/craft-technical-reports.md -------------------------------------------------------------------------------- /craft-writing-papers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/craft-writing-papers.md -------------------------------------------------------------------------------- /craft_diss_pyramid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/craft_diss_pyramid.py -------------------------------------------------------------------------------- /data-advanced.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/data-advanced.ipynb -------------------------------------------------------------------------------- /data-analysis-quickstart.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/data-analysis-quickstart.ipynb -------------------------------------------------------------------------------- /data-boolean.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/data-boolean.ipynb -------------------------------------------------------------------------------- /data-categorical.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/data-categorical.ipynb -------------------------------------------------------------------------------- /data-databases.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/data-databases.ipynb -------------------------------------------------------------------------------- /data-exploratory-analysis.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/data-exploratory-analysis.ipynb -------------------------------------------------------------------------------- /data-extraction.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/data-extraction.ipynb -------------------------------------------------------------------------------- /data-intro.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/data-intro.ipynb -------------------------------------------------------------------------------- /data-joining-data.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/data-joining-data.ipynb -------------------------------------------------------------------------------- /data-missing-values.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/data-missing-values.ipynb -------------------------------------------------------------------------------- /data-numbers.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/data-numbers.ipynb -------------------------------------------------------------------------------- /data-read-and-write.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/data-read-and-write.md -------------------------------------------------------------------------------- /data-sharing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/data-sharing.md -------------------------------------------------------------------------------- /data-spreadsheets.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/data-spreadsheets.ipynb -------------------------------------------------------------------------------- /data-transformation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/data-transformation.ipynb -------------------------------------------------------------------------------- /data/Chinook.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/data/Chinook.sqlite -------------------------------------------------------------------------------- /data/Nov2020_MPR_CPI_fan.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/data/Nov2020_MPR_CPI_fan.csv -------------------------------------------------------------------------------- /data/ames_iowa_house_prices.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/data/ames_iowa_house_prices.csv -------------------------------------------------------------------------------- /data/bake_sale.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/data/bake_sale.xlsx -------------------------------------------------------------------------------- /data/beijing_pm.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/data/beijing_pm.csv -------------------------------------------------------------------------------- /data/berkeley_data.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/data/berkeley_data.pkl -------------------------------------------------------------------------------- /data/book_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/data/book_mask.png -------------------------------------------------------------------------------- /data/capop.dta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/data/capop.dta -------------------------------------------------------------------------------- /data/characters.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/data/characters.csv -------------------------------------------------------------------------------- /data/chicago.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/data/chicago.csv -------------------------------------------------------------------------------- /data/data_not_stored/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/deaths.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/data/deaths.xlsx -------------------------------------------------------------------------------- /data/flights.parquet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/data/flights.parquet -------------------------------------------------------------------------------- /data/flights1kBTS.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/data/flights1kBTS.csv -------------------------------------------------------------------------------- /data/geo/ashe_lad_median_pay_2020.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/data/geo/ashe_lad_median_pay_2020.csv -------------------------------------------------------------------------------- /data/geo/cities/ne_110m_populated_places.README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/data/geo/cities/ne_110m_populated_places.README.html -------------------------------------------------------------------------------- /data/geo/cities/ne_110m_populated_places.VERSION.txt: -------------------------------------------------------------------------------- 1 | 5.1.2 2 | -------------------------------------------------------------------------------- /data/geo/cities/ne_110m_populated_places.cpg: -------------------------------------------------------------------------------- 1 | UTF-8 -------------------------------------------------------------------------------- /data/geo/cities/ne_110m_populated_places.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/data/geo/cities/ne_110m_populated_places.dbf -------------------------------------------------------------------------------- /data/geo/cities/ne_110m_populated_places.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/data/geo/cities/ne_110m_populated_places.prj -------------------------------------------------------------------------------- /data/geo/cities/ne_110m_populated_places.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/data/geo/cities/ne_110m_populated_places.shp -------------------------------------------------------------------------------- /data/geo/cities/ne_110m_populated_places.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/data/geo/cities/ne_110m_populated_places.shx -------------------------------------------------------------------------------- /data/geo/cv_ldn_deaths.parquet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/data/geo/cv_ldn_deaths.parquet -------------------------------------------------------------------------------- /data/geo/detailed_world/ne_110m_admin_0_countries.README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/data/geo/detailed_world/ne_110m_admin_0_countries.README.html -------------------------------------------------------------------------------- /data/geo/detailed_world/ne_110m_admin_0_countries.VERSION.txt: -------------------------------------------------------------------------------- 1 | 5.1.1 2 | -------------------------------------------------------------------------------- /data/geo/detailed_world/ne_110m_admin_0_countries.cpg: -------------------------------------------------------------------------------- 1 | UTF-8 -------------------------------------------------------------------------------- /data/geo/detailed_world/ne_110m_admin_0_countries.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/data/geo/detailed_world/ne_110m_admin_0_countries.dbf -------------------------------------------------------------------------------- /data/geo/detailed_world/ne_110m_admin_0_countries.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/data/geo/detailed_world/ne_110m_admin_0_countries.prj -------------------------------------------------------------------------------- /data/geo/detailed_world/ne_110m_admin_0_countries.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/data/geo/detailed_world/ne_110m_admin_0_countries.shp -------------------------------------------------------------------------------- /data/geo/detailed_world/ne_110m_admin_0_countries.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/data/geo/detailed_world/ne_110m_admin_0_countries.shx -------------------------------------------------------------------------------- /data/geo/rivers/rivers.cpg: -------------------------------------------------------------------------------- 1 | ISO-8859-1 -------------------------------------------------------------------------------- /data/geo/rivers/rivers.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/data/geo/rivers/rivers.dbf -------------------------------------------------------------------------------- /data/geo/rivers/rivers.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/data/geo/rivers/rivers.prj -------------------------------------------------------------------------------- /data/geo/rivers/rivers.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/data/geo/rivers/rivers.shp -------------------------------------------------------------------------------- /data/geo/rivers/rivers.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/data/geo/rivers/rivers.shx -------------------------------------------------------------------------------- /data/geo/uk_lad/Local_Authority_Districts__May_2020__UK_BUC.cpg: -------------------------------------------------------------------------------- 1 | UTF-8 -------------------------------------------------------------------------------- /data/geo/uk_lad/Local_Authority_Districts__May_2020__UK_BUC.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/data/geo/uk_lad/Local_Authority_Districts__May_2020__UK_BUC.dbf -------------------------------------------------------------------------------- /data/geo/uk_lad/Local_Authority_Districts__May_2020__UK_BUC.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/data/geo/uk_lad/Local_Authority_Districts__May_2020__UK_BUC.prj -------------------------------------------------------------------------------- /data/geo/uk_lad/Local_Authority_Districts__May_2020__UK_BUC.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/data/geo/uk_lad/Local_Authority_Districts__May_2020__UK_BUC.shp -------------------------------------------------------------------------------- /data/geo/uk_lad/Local_Authority_Districts__May_2020__UK_BUC.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/data/geo/uk_lad/Local_Authority_Districts__May_2020__UK_BUC.shx -------------------------------------------------------------------------------- /data/geo/uk_lad/Local_Authority_Districts__May_2020__UK_BUC.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/data/geo/uk_lad/Local_Authority_Districts__May_2020__UK_BUC.xml -------------------------------------------------------------------------------- /data/geo/world/ne_110m_admin_0_countries.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/data/geo/world/ne_110m_admin_0_countries.shp -------------------------------------------------------------------------------- /data/geo/world/ne_110m_admin_0_countries.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/data/geo/world/ne_110m_admin_0_countries.shx -------------------------------------------------------------------------------- /data/geo/world/ne_50m_admin_0_countries.README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/data/geo/world/ne_50m_admin_0_countries.README.html -------------------------------------------------------------------------------- /data/geo/world/ne_50m_admin_0_countries.VERSION.txt: -------------------------------------------------------------------------------- 1 | 4.1.0 2 | -------------------------------------------------------------------------------- /data/geo/world/ne_50m_admin_0_countries.cpg: -------------------------------------------------------------------------------- 1 | UTF-8 -------------------------------------------------------------------------------- /data/geo/world/ne_50m_admin_0_countries.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/data/geo/world/ne_50m_admin_0_countries.dbf -------------------------------------------------------------------------------- /data/geo/world/ne_50m_admin_0_countries.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/data/geo/world/ne_50m_admin_0_countries.prj -------------------------------------------------------------------------------- /data/geo/world/ne_50m_admin_0_countries.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/data/geo/world/ne_50m_admin_0_countries.shp -------------------------------------------------------------------------------- /data/geo/world/ne_50m_admin_0_countries.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/data/geo/world/ne_50m_admin_0_countries.shx -------------------------------------------------------------------------------- /data/ilpop.dta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/data/ilpop.dta -------------------------------------------------------------------------------- /data/owid_gapminder.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/data/owid_gapminder.csv -------------------------------------------------------------------------------- /data/pdf_with_table.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/data/pdf_with_table.pdf -------------------------------------------------------------------------------- /data/penguins.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/data/penguins.xlsx -------------------------------------------------------------------------------- /data/priestley-timeline.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/data/priestley-timeline.csv -------------------------------------------------------------------------------- /data/smith_won.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/data/smith_won.txt -------------------------------------------------------------------------------- /data/starwars.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/data/starwars.csv -------------------------------------------------------------------------------- /data/students.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/data/students.xlsx -------------------------------------------------------------------------------- /data/tfl_small.parquet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/data/tfl_small.parquet -------------------------------------------------------------------------------- /data_set_prep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/data_set_prep.py -------------------------------------------------------------------------------- /econmt-bayes-bambi.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/econmt-bayes-bambi.ipynb -------------------------------------------------------------------------------- /econmt-bayesian.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/econmt-bayesian.ipynb -------------------------------------------------------------------------------- /econmt-causal-inference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/econmt-causal-inference.md -------------------------------------------------------------------------------- /econmt-diagnostics.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/econmt-diagnostics.ipynb -------------------------------------------------------------------------------- /econmt-generalised-models.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/econmt-generalised-models.ipynb -------------------------------------------------------------------------------- /econmt-probability-random.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/econmt-probability-random.ipynb -------------------------------------------------------------------------------- /econmt-regression.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/econmt-regression.ipynb -------------------------------------------------------------------------------- /econmt-statistics.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/econmt-statistics.ipynb -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/environment.yml -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/favicon.ico -------------------------------------------------------------------------------- /further-resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/further-resources.md -------------------------------------------------------------------------------- /geo-intro.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/geo-intro.ipynb -------------------------------------------------------------------------------- /geo-vis.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/geo-vis.ipynb -------------------------------------------------------------------------------- /img/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /img/gapminder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/img/gapminder.gif -------------------------------------------------------------------------------- /img/in_that_case.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/img/in_that_case.jpg -------------------------------------------------------------------------------- /img/makefile_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/img/makefile_example.png -------------------------------------------------------------------------------- /img/preattentive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/img/preattentive.png -------------------------------------------------------------------------------- /img/reproducibiity_relocates_time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/img/reproducibiity_relocates_time.png -------------------------------------------------------------------------------- /img/sin_bead.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/img/sin_bead.gif -------------------------------------------------------------------------------- /img/vscode_layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/img/vscode_layout.png -------------------------------------------------------------------------------- /intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/intro.md -------------------------------------------------------------------------------- /macro-models.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/macro-models.ipynb -------------------------------------------------------------------------------- /maths-abstract.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/maths-abstract.ipynb -------------------------------------------------------------------------------- /maths-numerical.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/maths-numerical.ipynb -------------------------------------------------------------------------------- /ml-data.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/ml-data.ipynb -------------------------------------------------------------------------------- /ml-intro.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/ml-intro.ipynb -------------------------------------------------------------------------------- /ml-sup.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/ml-sup.ipynb -------------------------------------------------------------------------------- /ml-unsup.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/ml-unsup.ipynb -------------------------------------------------------------------------------- /plot_style.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/plot_style.txt -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/pyproject.toml -------------------------------------------------------------------------------- /references.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/references.bib -------------------------------------------------------------------------------- /ruff.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/ruff.toml -------------------------------------------------------------------------------- /scratch/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /smith_lovelace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/smith_lovelace.png -------------------------------------------------------------------------------- /text-intro.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/text-intro.ipynb -------------------------------------------------------------------------------- /text-nlp.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/text-nlp.ipynb -------------------------------------------------------------------------------- /text-regex.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/text-regex.ipynb -------------------------------------------------------------------------------- /time-fcasts-env.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/time-fcasts-env.ipynb -------------------------------------------------------------------------------- /time-intro.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/time-intro.ipynb -------------------------------------------------------------------------------- /time-nowcasting.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/time-nowcasting.ipynb -------------------------------------------------------------------------------- /time-series.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/time-series.ipynb -------------------------------------------------------------------------------- /utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/utilities.py -------------------------------------------------------------------------------- /version_bumper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/version_bumper.py -------------------------------------------------------------------------------- /vis-animation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/vis-animation.ipynb -------------------------------------------------------------------------------- /vis-common-plots-one.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/vis-common-plots-one.ipynb -------------------------------------------------------------------------------- /vis-common-plots-two.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/vis-common-plots-two.ipynb -------------------------------------------------------------------------------- /vis-dashboards.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/vis-dashboards.md -------------------------------------------------------------------------------- /vis-intro.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/vis-intro.ipynb -------------------------------------------------------------------------------- /vis-letsplot.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/vis-letsplot.ipynb -------------------------------------------------------------------------------- /vis-matplotlib.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/vis-matplotlib.ipynb -------------------------------------------------------------------------------- /vis-narrative.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/vis-narrative.ipynb -------------------------------------------------------------------------------- /vis-plotnine.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/vis-plotnine.ipynb -------------------------------------------------------------------------------- /vis-seaborn.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/vis-seaborn.ipynb -------------------------------------------------------------------------------- /vis-tables.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/vis-tables.ipynb -------------------------------------------------------------------------------- /workflow-basics.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/workflow-basics.ipynb -------------------------------------------------------------------------------- /wrkflow-command-line.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/wrkflow-command-line.md -------------------------------------------------------------------------------- /wrkflow-environments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/wrkflow-environments.md -------------------------------------------------------------------------------- /wrkflow-markdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/wrkflow-markdown.md -------------------------------------------------------------------------------- /wrkflow-quarto.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/wrkflow-quarto.md -------------------------------------------------------------------------------- /wrkflow-rap.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/wrkflow-rap.ipynb -------------------------------------------------------------------------------- /wrkflow-version-control.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/wrkflow-version-control.md -------------------------------------------------------------------------------- /zreferences.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeturrell/coding-for-economists/HEAD/zreferences.md --------------------------------------------------------------------------------