Skip to content

Commit 25a3f0b

Browse files
authored
Merge branch 'main' into i-524
2 parents b1976af + 677d94b commit 25a3f0b

17 files changed

+3741
-1919
lines changed

.github/workflows/linkcheck.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Link Checker (lychee)
22
on:
33
schedule:
44
# UTC 23:00 is early morning in Australia (9am)
5-
- cron: '0 23 * * *'
5+
- cron: '0 23 * * 1'
66
workflow_dispatch:
77
jobs:
88
link-checking:
@@ -21,7 +21,7 @@ jobs:
2121
uses: lycheeverse/lychee-action@v2
2222
with:
2323
fail: false
24-
args: --accept 403,503 *.html
24+
args: --accept 200,403,503 *.html
2525
- name: Create Issue From File
2626
if: steps.lychee.outputs.exit_code != 0
2727
uses: peter-evans/create-issue-from-file@v5

lectures/_static/quant-econ.bib

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,36 @@
22
QuantEcon Bibliography File used in conjuction with sphinxcontrib-bibtex package
33
Note: Extended Information (like abstracts, doi, url's etc.) can be found in quant-econ-extendedinfo.bib file in _static/
44
###
5+
6+
@article{shannon1948mathematical,
7+
title={A mathematical theory of communication},
8+
author={Shannon, Claude E},
9+
journal={The Bell system technical journal},
10+
volume={27},
11+
number={3},
12+
pages={379--423},
13+
year={1948},
14+
publisher={Nokia Bell Labs}
15+
}
16+
17+
@article{kullback1951information,
18+
title={On Information and Sufficiency},
19+
author={Kullback, Solomon and Leibler, Richard A},
20+
journal={The Annals of Mathematical Statistics},
21+
volume={22},
22+
number={1},
23+
pages={79--86},
24+
year={1951},
25+
publisher={JSTOR}
26+
}
27+
28+
@book{kullback1997information,
29+
title={Information theory and statistics},
30+
author={Kullback, Solomon},
31+
year={1997},
32+
publisher={Courier Corporation}
33+
}
34+
535
@book{friedman1953essays,
636
title={Essays in positive economics},
737
author={Friedman, Milton},

lectures/_toc.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,10 @@ parts:
3333
- caption: Statistics and Information
3434
numbered: true
3535
chapters:
36+
- file: divergence_measures
3637
- file: likelihood_ratio_process
38+
- file: likelihood_ratio_process_2
39+
- file: likelihood_var
3740
- file: imp_sample
3841
- file: wald_friedman
3942
- file: wald_friedman_2

lectures/career.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -206,8 +206,8 @@ class CareerWorkerProblem:
206206
207207
self.F_probs = BetaBinomial(grid_size - 1, F_a, F_b).pdf()
208208
self.G_probs = BetaBinomial(grid_size - 1, G_a, G_b).pdf()
209-
self.F_mean = np.sum(self.θ * self.F_probs)
210-
self.G_mean = np.sum(self.ϵ * self.G_probs)
209+
self.F_mean = self.θ @ self.F_probs
210+
self.G_mean = self.ϵ @ self.G_probs
211211
212212
# Store these parameters for str and repr methods
213213
self._F_a, self._F_b = F_a, F_b

0 commit comments

Comments
 (0)