Skip to content

Commit 3f0332d

Browse files
Merge branch 'main' of https://github.com/QuantEcon/lecture-python-intro into fix_transpose
2 parents 1f35310 + 04bff00 commit 3f0332d

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

lectures/input_output.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,12 @@ import quantecon_book_networks.input_output as qbn_io
4545
import quantecon_book_networks.plotting as qbn_plt
4646
import quantecon_book_networks.data as qbn_data
4747
48-
quantecon_book_networks.config("matplotlib")
49-
```
50-
51-
```{code-cell} ipython3
5248
ch2_data = qbn_data.production()
49+
50+
quantecon_book_networks.config("matplotlib")
51+
import matplotlib as mpl
52+
mpl.rcParams.update(mpl.rcParamsDefault)
53+
from matplotlib.patches import Polygon
5354
```
5455

5556
```{code-cell} ipython3
@@ -575,6 +576,7 @@ $$
575576
576577
This can be written as $\mu^\top = \mathbb{1}^\top L$ or
577578
579+
578580
$$
579581
\mu^\top = \mathbb{1}^\top (I-A)^{-1}
580582
$$
@@ -650,6 +652,7 @@ where $z_0$ is a vector of labor services used in each industry.
650652
:class: dropdown
651653
```
652654
For each i = 0,1,2 and j = 1,2
655+
653656
$$
654657
a_{ij} = \frac{z_{ij}}{x_j}
655658
$$

0 commit comments

Comments
 (0)