Skip to content

Commit 7a77956

Browse files
committed
Merge branch 'main' of https://github.com/QuantEcon/lecture-python-intro into add_prob_dist
2 parents 1ba266a + 782226a commit 7a77956

28 files changed

+2919
-1002
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ jobs:
1515
python-version: "3.10"
1616
environment-file: environment.yml
1717
activate-environment: quantecon
18-
- name: Graphics Support
19-
run: |
20-
sudo apt-get -qq update && sudo apt-get install -y graphviz
18+
# - name: Graphics Support
19+
# run: |
20+
# sudo apt-get -qq update && sudo apt-get install -y graphviz
2121
# - name: Install latex dependencies
2222
# run: |
2323
# sudo apt-get -qq update
@@ -80,4 +80,4 @@ jobs:
8080
deploy-message: "Preview Deploy from GitHub Actions"
8181
env:
8282
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
83-
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
83+
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
.DS_Store
22
lectures/_build
3-
*/.ipynb_checkpoints/
3+
*/.ipynb_checkpoints/
4+
_build/*

environment.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
name: quantecon
22
channels:
33
- default
4+
- conda-forge
45
dependencies:
56
- python=3.10
67
- anaconda=2023.03
8+
- python-graphviz
79
- pip
810
- pip:
911
- jupyter-book==0.15.1
@@ -23,4 +25,3 @@ dependencies:
2325
# - cylp
2426
# - array-to-latex
2527
# - prettytable
26-

lectures/_config.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,9 @@ latex:
3737
sphinx:
3838
extra_extensions: [sphinx_multitoc_numbering, sphinxext.rediraffe, sphinx_exercise, sphinx_togglebutton, sphinx_proof, sphinx_tojupyter]
3939
config:
40+
# myst-nb config
41+
nb_render_image_options:
42+
width: 80%
4043
html_favicon: _static/lectures-favicon.ico
4144
html_theme: quantecon_book_theme
4245
html_static_path: ['_static']
Loading
Loading

lectures/_static/quant-econ.bib

Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,70 @@
33
Note: Extended Information (like abstracts, doi, url's etc.) can be found in quant-econ-extendedinfo.bib file in _static/
44
###
55
6+
@article{chambers1996theory,
7+
title={A theory of commodity price fluctuations},
8+
author={Chambers, Marcus J and Bailey, Roy E},
9+
journal={Journal of Political Economy},
10+
volume={104},
11+
number={5},
12+
pages={924--957},
13+
year={1996},
14+
publisher={The University of Chicago Press}
15+
}
16+
17+
@article{deaton1996competitive,
18+
title={Competitive storage and commodity price dynamics},
19+
author={Deaton, Angus and Laroque, Guy},
20+
journal={Journal of Political Economy},
21+
volume={104},
22+
number={5},
23+
pages={896--923},
24+
year={1996}
25+
}
26+
27+
28+
@article{deaton1992on,
29+
title={On the behavior of commodity prices},
30+
author={Deaton, Angus and Laroque, Guy},
31+
journal={The Review of Economic Studies},
32+
year={1992},
33+
volume={59},
34+
pages={1--23}
35+
}
36+
37+
@article{scheinkman1983simple,
38+
title={A simple competitive model with production and storage},
39+
author={Scheinkman, Jose A and Schechtman, Jack},
40+
journal={The Review of Economic Studies},
41+
volume={50},
42+
number={3},
43+
pages={427--441},
44+
year={1983},
45+
publisher={Wiley-Blackwell}
46+
}
47+
48+
@article{wright1982economic,
49+
title={The economic role of commodity storage},
50+
author={Wright, Brian D and Williams, Jeffrey C},
51+
journal={The Economic Journal},
52+
volume={92},
53+
number={367},
54+
pages={596--614},
55+
year={1982},
56+
publisher={JSTOR}
57+
}
58+
59+
@article{samuelson1971stochastic,
60+
title={Stochastic speculative price},
61+
author={Samuelson, Paul A},
62+
journal={Proceedings of the National Academy of Sciences},
63+
volume={68},
64+
number={2},
65+
pages={335--337},
66+
year={1971},
67+
publisher={National Acad Sciences}
68+
}
69+
670
@article{samuelson1958exact,
771
title={An exact consumption-loan model of interest with or without the social contrivance of money},
872
author={Samuelson, Paul A},

lectures/_toc.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ parts:
1919
- file: business_cycle
2020
- file: inflation_unemployment
2121
- file: inequality
22+
- file: cross_section
2223
- caption: Useful Tools
2324
numbered: true
2425
chapters:
@@ -41,6 +42,7 @@ parts:
4142
- file: olg
4243
- file: markov_chains_I
4344
- file: markov_chains_II
45+
- file: commod_price
4446
- caption: Modeling in Higher Dimensions
4547
numbered: true
4648
chapters:

0 commit comments

Comments
 (0)