├── .github └── workflows │ ├── cache.yml │ ├── ci.yml │ ├── coverage.yml │ └── preview.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── conf.py ├── environment.yml ├── requirements.txt ├── scripts ├── build-website.sh ├── execution-test.sh └── linkchecker-test.sh ├── sitemap.xml ├── source ├── _static │ ├── downloads │ │ └── amss_environment.yml │ ├── includes │ │ ├── header.raw │ │ └── lecture_howto_py.raw │ ├── lecture_specific │ │ ├── amss │ │ │ └── recursive_allocation.py │ │ ├── amss2 │ │ │ ├── crra_utility.py │ │ │ ├── log_utility.py │ │ │ ├── recursive_allocation.py │ │ │ ├── sequential_allocation.py │ │ │ └── utilities.py │ │ ├── amss3 │ │ │ ├── amss3_g1.png │ │ │ ├── amss3_g2.png │ │ │ └── amss3_g3.png │ │ ├── arellano │ │ │ ├── arellano_bond_prices.png │ │ │ ├── arellano_bond_prices_2.png │ │ │ ├── arellano_default_probs.png │ │ │ ├── arellano_time_series.png │ │ │ └── arellano_value_funcs.png │ │ ├── arma │ │ │ └── time_series_book.pdf │ │ ├── chang_credible │ │ │ └── changecon.py │ │ ├── coase │ │ │ ├── allocation.png │ │ │ ├── allocation.tex │ │ │ ├── subcontracting.png │ │ │ └── subcontracting.tex │ │ ├── discrete_dp │ │ │ ├── finite_dp_simple_og.png │ │ │ └── finite_dp_simple_og2.png │ │ ├── estspec │ │ │ ├── ar_smoothed_periodogram.png │ │ │ ├── periodogram1.png │ │ │ └── window_smoothing.png │ │ ├── lqramsey │ │ │ └── firenze.pdf │ │ ├── lu_tricks │ │ │ └── control_and_filter.py │ │ ├── lucas_model │ │ │ ├── lucastree.py │ │ │ └── solution_mass_ex2.png │ │ ├── markov_perf │ │ │ ├── duopoly_mpe.py │ │ │ ├── judd_fig1.png │ │ │ ├── judd_fig2.png │ │ │ └── mpe_vs_monopolist.png │ │ ├── matsuyama │ │ │ ├── matsuyama_14.png │ │ │ └── matsuyama_18.png │ │ ├── opt_tax_recur │ │ │ ├── crra_utility.py │ │ │ ├── log_utility.py │ │ │ ├── recursive_allocation.py │ │ │ └── sequential_allocation.py │ │ ├── orth_proj │ │ │ ├── orth_proj_def1.png │ │ │ ├── orth_proj_def1.tex │ │ │ ├── orth_proj_def2.png │ │ │ ├── orth_proj_def2.tex │ │ │ ├── orth_proj_def3.png │ │ │ ├── orth_proj_def3.tex │ │ │ ├── orth_proj_thm1.png │ │ │ ├── orth_proj_thm1.tex │ │ │ ├── orth_proj_thm2.png │ │ │ ├── orth_proj_thm2.tex │ │ │ ├── orth_proj_thm3.png │ │ │ └── orth_proj_thm3.tex │ │ ├── robustness │ │ │ ├── kg.png │ │ │ ├── kg0.png │ │ │ └── kg_small_theta.png │ │ ├── stationary_densities │ │ │ ├── ECTA6180.pdf │ │ │ ├── solution_statd_ex1.png │ │ │ └── solution_statd_ex2.png │ │ └── troubleshooting │ │ │ └── launch.png │ ├── qe-logo-large.png │ └── quant-econ.bib └── rst │ ├── .ipynb_checkpoints │ ├── Untitled-checkpoint.ipynb │ └── changethis-checkpoint.ipynb │ ├── 404.rst │ ├── BCG_complete_mkts.rst │ ├── BCG_incomplete_mkts.rst │ ├── _static │ ├── about_lectures.rst │ ├── additive_functionals.rst │ ├── amss.rst │ ├── amss2.rst │ ├── amss3.rst │ ├── arellano.rst │ ├── arma.rst │ ├── black_litterman.rst │ ├── calvo.rst │ ├── cattle_cycles.rst │ ├── chang_credible.rst │ ├── chang_ramsey.rst │ ├── classical_filtering.rst │ ├── coase.rst │ ├── cons_news.rst │ ├── discrete_dp.rst │ ├── dyn_stack.rst │ ├── estspec.rst │ ├── growth_in_dles.rst │ ├── hs_invertibility_example.rst │ ├── hs_recursive_models.rst │ ├── index.rst │ ├── index_asset_pricing.rst │ ├── index_classic_linear_models.rst │ ├── index_dynamic_programming_squared.rst │ ├── index_hs_recursive_models.rst │ ├── index_lq_control.rst │ ├── index_multi_agent_models.rst │ ├── index_time_series_models.rst │ ├── index_toc.rst │ ├── index_tools_and_techniques.rst │ ├── irfs_in_hall_model.rst │ ├── knowing_forecasts_of_others.rst │ ├── lqramsey.rst │ ├── lu_tricks.rst │ ├── lucas_asset_pricing_dles.rst │ ├── lucas_model.rst │ ├── markov_jump_lq.rst │ ├── matsuyama.rst │ ├── muth_kalman.rst │ ├── opt_tax_recur.rst │ ├── orth_proj.rst │ ├── permanent_income_dles.rst │ ├── rob_markov_perf.rst │ ├── robustness.rst │ ├── rosen_schooling_model.rst │ ├── search.rst │ ├── smoothing.rst │ ├── smoothing_tax.rst │ ├── stationary_densities.rst │ ├── status.rst │ ├── tax_smoothing_1.rst │ ├── tax_smoothing_2.rst │ ├── tax_smoothing_3.rst │ ├── troubleshooting.rst │ ├── von_neumann_model.rst │ └── zreferences.rst └── theme └── minimal ├── static ├── css │ ├── base.css │ └── qe.python.css ├── img │ ├── code-block-fade.png │ ├── powered-by-NumFOCUS-orange.svg │ ├── py-logo.png │ ├── qe-logo.png │ ├── search-icon.png │ └── sloan_logo.png ├── js │ └── base.js └── sloan_logo.png └── templates ├── error_report_template.html ├── html.tpl ├── latex.tpl └── latex_book.tpl /.github/workflows/cache.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/.github/workflows/cache.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/coverage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/.github/workflows/coverage.yml -------------------------------------------------------------------------------- /.github/workflows/preview.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/.github/workflows/preview.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/README.md -------------------------------------------------------------------------------- /conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/conf.py -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/environment.yml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/build-website.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/scripts/build-website.sh -------------------------------------------------------------------------------- /scripts/execution-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/scripts/execution-test.sh -------------------------------------------------------------------------------- /scripts/linkchecker-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/scripts/linkchecker-test.sh -------------------------------------------------------------------------------- /sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/sitemap.xml -------------------------------------------------------------------------------- /source/_static/downloads/amss_environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/_static/downloads/amss_environment.yml -------------------------------------------------------------------------------- /source/_static/includes/header.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/_static/includes/header.raw -------------------------------------------------------------------------------- /source/_static/includes/lecture_howto_py.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/_static/includes/lecture_howto_py.raw -------------------------------------------------------------------------------- /source/_static/lecture_specific/amss/recursive_allocation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/_static/lecture_specific/amss/recursive_allocation.py -------------------------------------------------------------------------------- /source/_static/lecture_specific/amss2/crra_utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/_static/lecture_specific/amss2/crra_utility.py -------------------------------------------------------------------------------- /source/_static/lecture_specific/amss2/log_utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/_static/lecture_specific/amss2/log_utility.py -------------------------------------------------------------------------------- /source/_static/lecture_specific/amss2/recursive_allocation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/_static/lecture_specific/amss2/recursive_allocation.py -------------------------------------------------------------------------------- /source/_static/lecture_specific/amss2/sequential_allocation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/_static/lecture_specific/amss2/sequential_allocation.py -------------------------------------------------------------------------------- /source/_static/lecture_specific/amss2/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/_static/lecture_specific/amss2/utilities.py -------------------------------------------------------------------------------- /source/_static/lecture_specific/amss3/amss3_g1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/_static/lecture_specific/amss3/amss3_g1.png -------------------------------------------------------------------------------- /source/_static/lecture_specific/amss3/amss3_g2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/_static/lecture_specific/amss3/amss3_g2.png -------------------------------------------------------------------------------- /source/_static/lecture_specific/amss3/amss3_g3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/_static/lecture_specific/amss3/amss3_g3.png -------------------------------------------------------------------------------- /source/_static/lecture_specific/arellano/arellano_bond_prices.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/_static/lecture_specific/arellano/arellano_bond_prices.png -------------------------------------------------------------------------------- /source/_static/lecture_specific/arellano/arellano_bond_prices_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/_static/lecture_specific/arellano/arellano_bond_prices_2.png -------------------------------------------------------------------------------- /source/_static/lecture_specific/arellano/arellano_default_probs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/_static/lecture_specific/arellano/arellano_default_probs.png -------------------------------------------------------------------------------- /source/_static/lecture_specific/arellano/arellano_time_series.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/_static/lecture_specific/arellano/arellano_time_series.png -------------------------------------------------------------------------------- /source/_static/lecture_specific/arellano/arellano_value_funcs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/_static/lecture_specific/arellano/arellano_value_funcs.png -------------------------------------------------------------------------------- /source/_static/lecture_specific/arma/time_series_book.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/_static/lecture_specific/arma/time_series_book.pdf -------------------------------------------------------------------------------- /source/_static/lecture_specific/chang_credible/changecon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/_static/lecture_specific/chang_credible/changecon.py -------------------------------------------------------------------------------- /source/_static/lecture_specific/coase/allocation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/_static/lecture_specific/coase/allocation.png -------------------------------------------------------------------------------- /source/_static/lecture_specific/coase/allocation.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/_static/lecture_specific/coase/allocation.tex -------------------------------------------------------------------------------- /source/_static/lecture_specific/coase/subcontracting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/_static/lecture_specific/coase/subcontracting.png -------------------------------------------------------------------------------- /source/_static/lecture_specific/coase/subcontracting.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/_static/lecture_specific/coase/subcontracting.tex -------------------------------------------------------------------------------- /source/_static/lecture_specific/discrete_dp/finite_dp_simple_og.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/_static/lecture_specific/discrete_dp/finite_dp_simple_og.png -------------------------------------------------------------------------------- /source/_static/lecture_specific/discrete_dp/finite_dp_simple_og2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/_static/lecture_specific/discrete_dp/finite_dp_simple_og2.png -------------------------------------------------------------------------------- /source/_static/lecture_specific/estspec/ar_smoothed_periodogram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/_static/lecture_specific/estspec/ar_smoothed_periodogram.png -------------------------------------------------------------------------------- /source/_static/lecture_specific/estspec/periodogram1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/_static/lecture_specific/estspec/periodogram1.png -------------------------------------------------------------------------------- /source/_static/lecture_specific/estspec/window_smoothing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/_static/lecture_specific/estspec/window_smoothing.png -------------------------------------------------------------------------------- /source/_static/lecture_specific/lqramsey/firenze.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/_static/lecture_specific/lqramsey/firenze.pdf -------------------------------------------------------------------------------- /source/_static/lecture_specific/lu_tricks/control_and_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/_static/lecture_specific/lu_tricks/control_and_filter.py -------------------------------------------------------------------------------- /source/_static/lecture_specific/lucas_model/lucastree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/_static/lecture_specific/lucas_model/lucastree.py -------------------------------------------------------------------------------- /source/_static/lecture_specific/lucas_model/solution_mass_ex2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/_static/lecture_specific/lucas_model/solution_mass_ex2.png -------------------------------------------------------------------------------- /source/_static/lecture_specific/markov_perf/duopoly_mpe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/_static/lecture_specific/markov_perf/duopoly_mpe.py -------------------------------------------------------------------------------- /source/_static/lecture_specific/markov_perf/judd_fig1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/_static/lecture_specific/markov_perf/judd_fig1.png -------------------------------------------------------------------------------- /source/_static/lecture_specific/markov_perf/judd_fig2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/_static/lecture_specific/markov_perf/judd_fig2.png -------------------------------------------------------------------------------- /source/_static/lecture_specific/markov_perf/mpe_vs_monopolist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/_static/lecture_specific/markov_perf/mpe_vs_monopolist.png -------------------------------------------------------------------------------- /source/_static/lecture_specific/matsuyama/matsuyama_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/_static/lecture_specific/matsuyama/matsuyama_14.png -------------------------------------------------------------------------------- /source/_static/lecture_specific/matsuyama/matsuyama_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/_static/lecture_specific/matsuyama/matsuyama_18.png -------------------------------------------------------------------------------- /source/_static/lecture_specific/opt_tax_recur/crra_utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/_static/lecture_specific/opt_tax_recur/crra_utility.py -------------------------------------------------------------------------------- /source/_static/lecture_specific/opt_tax_recur/log_utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/_static/lecture_specific/opt_tax_recur/log_utility.py -------------------------------------------------------------------------------- /source/_static/lecture_specific/opt_tax_recur/recursive_allocation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/_static/lecture_specific/opt_tax_recur/recursive_allocation.py -------------------------------------------------------------------------------- /source/_static/lecture_specific/opt_tax_recur/sequential_allocation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/_static/lecture_specific/opt_tax_recur/sequential_allocation.py -------------------------------------------------------------------------------- /source/_static/lecture_specific/orth_proj/orth_proj_def1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/_static/lecture_specific/orth_proj/orth_proj_def1.png -------------------------------------------------------------------------------- /source/_static/lecture_specific/orth_proj/orth_proj_def1.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/_static/lecture_specific/orth_proj/orth_proj_def1.tex -------------------------------------------------------------------------------- /source/_static/lecture_specific/orth_proj/orth_proj_def2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/_static/lecture_specific/orth_proj/orth_proj_def2.png -------------------------------------------------------------------------------- /source/_static/lecture_specific/orth_proj/orth_proj_def2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/_static/lecture_specific/orth_proj/orth_proj_def2.tex -------------------------------------------------------------------------------- /source/_static/lecture_specific/orth_proj/orth_proj_def3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/_static/lecture_specific/orth_proj/orth_proj_def3.png -------------------------------------------------------------------------------- /source/_static/lecture_specific/orth_proj/orth_proj_def3.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/_static/lecture_specific/orth_proj/orth_proj_def3.tex -------------------------------------------------------------------------------- /source/_static/lecture_specific/orth_proj/orth_proj_thm1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/_static/lecture_specific/orth_proj/orth_proj_thm1.png -------------------------------------------------------------------------------- /source/_static/lecture_specific/orth_proj/orth_proj_thm1.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/_static/lecture_specific/orth_proj/orth_proj_thm1.tex -------------------------------------------------------------------------------- /source/_static/lecture_specific/orth_proj/orth_proj_thm2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/_static/lecture_specific/orth_proj/orth_proj_thm2.png -------------------------------------------------------------------------------- /source/_static/lecture_specific/orth_proj/orth_proj_thm2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/_static/lecture_specific/orth_proj/orth_proj_thm2.tex -------------------------------------------------------------------------------- /source/_static/lecture_specific/orth_proj/orth_proj_thm3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/_static/lecture_specific/orth_proj/orth_proj_thm3.png -------------------------------------------------------------------------------- /source/_static/lecture_specific/orth_proj/orth_proj_thm3.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/_static/lecture_specific/orth_proj/orth_proj_thm3.tex -------------------------------------------------------------------------------- /source/_static/lecture_specific/robustness/kg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/_static/lecture_specific/robustness/kg.png -------------------------------------------------------------------------------- /source/_static/lecture_specific/robustness/kg0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/_static/lecture_specific/robustness/kg0.png -------------------------------------------------------------------------------- /source/_static/lecture_specific/robustness/kg_small_theta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/_static/lecture_specific/robustness/kg_small_theta.png -------------------------------------------------------------------------------- /source/_static/lecture_specific/stationary_densities/ECTA6180.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/_static/lecture_specific/stationary_densities/ECTA6180.pdf -------------------------------------------------------------------------------- /source/_static/lecture_specific/stationary_densities/solution_statd_ex1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/_static/lecture_specific/stationary_densities/solution_statd_ex1.png -------------------------------------------------------------------------------- /source/_static/lecture_specific/stationary_densities/solution_statd_ex2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/_static/lecture_specific/stationary_densities/solution_statd_ex2.png -------------------------------------------------------------------------------- /source/_static/lecture_specific/troubleshooting/launch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/_static/lecture_specific/troubleshooting/launch.png -------------------------------------------------------------------------------- /source/_static/qe-logo-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/_static/qe-logo-large.png -------------------------------------------------------------------------------- /source/_static/quant-econ.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/_static/quant-econ.bib -------------------------------------------------------------------------------- /source/rst/.ipynb_checkpoints/Untitled-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/rst/.ipynb_checkpoints/Untitled-checkpoint.ipynb -------------------------------------------------------------------------------- /source/rst/.ipynb_checkpoints/changethis-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/rst/.ipynb_checkpoints/changethis-checkpoint.ipynb -------------------------------------------------------------------------------- /source/rst/404.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/rst/404.rst -------------------------------------------------------------------------------- /source/rst/BCG_complete_mkts.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/rst/BCG_complete_mkts.rst -------------------------------------------------------------------------------- /source/rst/BCG_incomplete_mkts.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/rst/BCG_incomplete_mkts.rst -------------------------------------------------------------------------------- /source/rst/_static: -------------------------------------------------------------------------------- 1 | ../_static -------------------------------------------------------------------------------- /source/rst/about_lectures.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/rst/about_lectures.rst -------------------------------------------------------------------------------- /source/rst/additive_functionals.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/rst/additive_functionals.rst -------------------------------------------------------------------------------- /source/rst/amss.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/rst/amss.rst -------------------------------------------------------------------------------- /source/rst/amss2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/rst/amss2.rst -------------------------------------------------------------------------------- /source/rst/amss3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/rst/amss3.rst -------------------------------------------------------------------------------- /source/rst/arellano.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/rst/arellano.rst -------------------------------------------------------------------------------- /source/rst/arma.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/rst/arma.rst -------------------------------------------------------------------------------- /source/rst/black_litterman.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/rst/black_litterman.rst -------------------------------------------------------------------------------- /source/rst/calvo.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/rst/calvo.rst -------------------------------------------------------------------------------- /source/rst/cattle_cycles.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/rst/cattle_cycles.rst -------------------------------------------------------------------------------- /source/rst/chang_credible.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/rst/chang_credible.rst -------------------------------------------------------------------------------- /source/rst/chang_ramsey.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/rst/chang_ramsey.rst -------------------------------------------------------------------------------- /source/rst/classical_filtering.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/rst/classical_filtering.rst -------------------------------------------------------------------------------- /source/rst/coase.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/rst/coase.rst -------------------------------------------------------------------------------- /source/rst/cons_news.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/rst/cons_news.rst -------------------------------------------------------------------------------- /source/rst/discrete_dp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/rst/discrete_dp.rst -------------------------------------------------------------------------------- /source/rst/dyn_stack.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/rst/dyn_stack.rst -------------------------------------------------------------------------------- /source/rst/estspec.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/rst/estspec.rst -------------------------------------------------------------------------------- /source/rst/growth_in_dles.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/rst/growth_in_dles.rst -------------------------------------------------------------------------------- /source/rst/hs_invertibility_example.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/rst/hs_invertibility_example.rst -------------------------------------------------------------------------------- /source/rst/hs_recursive_models.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/rst/hs_recursive_models.rst -------------------------------------------------------------------------------- /source/rst/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/rst/index.rst -------------------------------------------------------------------------------- /source/rst/index_asset_pricing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/rst/index_asset_pricing.rst -------------------------------------------------------------------------------- /source/rst/index_classic_linear_models.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/rst/index_classic_linear_models.rst -------------------------------------------------------------------------------- /source/rst/index_dynamic_programming_squared.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/rst/index_dynamic_programming_squared.rst -------------------------------------------------------------------------------- /source/rst/index_hs_recursive_models.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/rst/index_hs_recursive_models.rst -------------------------------------------------------------------------------- /source/rst/index_lq_control.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/rst/index_lq_control.rst -------------------------------------------------------------------------------- /source/rst/index_multi_agent_models.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/rst/index_multi_agent_models.rst -------------------------------------------------------------------------------- /source/rst/index_time_series_models.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/rst/index_time_series_models.rst -------------------------------------------------------------------------------- /source/rst/index_toc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/rst/index_toc.rst -------------------------------------------------------------------------------- /source/rst/index_tools_and_techniques.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/rst/index_tools_and_techniques.rst -------------------------------------------------------------------------------- /source/rst/irfs_in_hall_model.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/rst/irfs_in_hall_model.rst -------------------------------------------------------------------------------- /source/rst/knowing_forecasts_of_others.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/rst/knowing_forecasts_of_others.rst -------------------------------------------------------------------------------- /source/rst/lqramsey.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/rst/lqramsey.rst -------------------------------------------------------------------------------- /source/rst/lu_tricks.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/rst/lu_tricks.rst -------------------------------------------------------------------------------- /source/rst/lucas_asset_pricing_dles.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/rst/lucas_asset_pricing_dles.rst -------------------------------------------------------------------------------- /source/rst/lucas_model.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/rst/lucas_model.rst -------------------------------------------------------------------------------- /source/rst/markov_jump_lq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/rst/markov_jump_lq.rst -------------------------------------------------------------------------------- /source/rst/matsuyama.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/rst/matsuyama.rst -------------------------------------------------------------------------------- /source/rst/muth_kalman.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/rst/muth_kalman.rst -------------------------------------------------------------------------------- /source/rst/opt_tax_recur.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/rst/opt_tax_recur.rst -------------------------------------------------------------------------------- /source/rst/orth_proj.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/rst/orth_proj.rst -------------------------------------------------------------------------------- /source/rst/permanent_income_dles.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/rst/permanent_income_dles.rst -------------------------------------------------------------------------------- /source/rst/rob_markov_perf.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/rst/rob_markov_perf.rst -------------------------------------------------------------------------------- /source/rst/robustness.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/rst/robustness.rst -------------------------------------------------------------------------------- /source/rst/rosen_schooling_model.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/rst/rosen_schooling_model.rst -------------------------------------------------------------------------------- /source/rst/search.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/rst/search.rst -------------------------------------------------------------------------------- /source/rst/smoothing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/rst/smoothing.rst -------------------------------------------------------------------------------- /source/rst/smoothing_tax.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/rst/smoothing_tax.rst -------------------------------------------------------------------------------- /source/rst/stationary_densities.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/rst/stationary_densities.rst -------------------------------------------------------------------------------- /source/rst/status.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/rst/status.rst -------------------------------------------------------------------------------- /source/rst/tax_smoothing_1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/rst/tax_smoothing_1.rst -------------------------------------------------------------------------------- /source/rst/tax_smoothing_2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/rst/tax_smoothing_2.rst -------------------------------------------------------------------------------- /source/rst/tax_smoothing_3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/rst/tax_smoothing_3.rst -------------------------------------------------------------------------------- /source/rst/troubleshooting.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/rst/troubleshooting.rst -------------------------------------------------------------------------------- /source/rst/von_neumann_model.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/rst/von_neumann_model.rst -------------------------------------------------------------------------------- /source/rst/zreferences.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/source/rst/zreferences.rst -------------------------------------------------------------------------------- /theme/minimal/static/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/theme/minimal/static/css/base.css -------------------------------------------------------------------------------- /theme/minimal/static/css/qe.python.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/theme/minimal/static/css/qe.python.css -------------------------------------------------------------------------------- /theme/minimal/static/img/code-block-fade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/theme/minimal/static/img/code-block-fade.png -------------------------------------------------------------------------------- /theme/minimal/static/img/powered-by-NumFOCUS-orange.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/theme/minimal/static/img/powered-by-NumFOCUS-orange.svg -------------------------------------------------------------------------------- /theme/minimal/static/img/py-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/theme/minimal/static/img/py-logo.png -------------------------------------------------------------------------------- /theme/minimal/static/img/qe-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/theme/minimal/static/img/qe-logo.png -------------------------------------------------------------------------------- /theme/minimal/static/img/search-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/theme/minimal/static/img/search-icon.png -------------------------------------------------------------------------------- /theme/minimal/static/img/sloan_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/theme/minimal/static/img/sloan_logo.png -------------------------------------------------------------------------------- /theme/minimal/static/js/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/theme/minimal/static/js/base.js -------------------------------------------------------------------------------- /theme/minimal/static/sloan_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/theme/minimal/static/sloan_logo.png -------------------------------------------------------------------------------- /theme/minimal/templates/error_report_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/theme/minimal/templates/error_report_template.html -------------------------------------------------------------------------------- /theme/minimal/templates/html.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/theme/minimal/templates/html.tpl -------------------------------------------------------------------------------- /theme/minimal/templates/latex.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/theme/minimal/templates/latex.tpl -------------------------------------------------------------------------------- /theme/minimal/templates/latex_book.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuantEcon/lecture-python-advanced/HEAD/theme/minimal/templates/latex_book.tpl --------------------------------------------------------------------------------