Skip to content

Commit 24f1491

Browse files
committed
add pip install pandas-datareader
1 parent 5bd1e1e commit 24f1491

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

lectures/input_output.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ This lecture requires the following imports and installs before we proceed.
2222
2323
!pip install quantecon_book_networks
2424
!pip install quantecon
25+
!pip install pandas-datareader
2526
```
2627

2728
```{code-cell} ipython3
@@ -80,7 +81,7 @@ A, F = build_coefficient_matrices(Z, X)
8081

8182
```{code-cell} ipython3
8283
---
83-
:tags: [hide-cell]
84+
tags: [hide-input]
8485
mystnb:
8586
figure:
8687
caption: US 15 sector production network
@@ -155,7 +156,7 @@ The following is a simple illustration of this network.
155156

156157
```{code-cell} ipython3
157158
---
158-
:tags: [hide-cell]
159+
tags: [hide-input]
159160
---
160161
G = nx.DiGraph()
161162
@@ -201,7 +202,7 @@ This can be graphically represented as follows.
201202

202203
```{code-cell} ipython3
203204
---
204-
:tags: [hide-cell]
205+
tags: [hide-input]
205206
---
206207
from matplotlib.patches import Polygon
207208
@@ -448,7 +449,7 @@ The dual problem can be graphically represented as follows.
448449
449450
```{code-cell} ipython3
450451
---
451-
:tags: [hide-cell]
452+
tags: [hide-input]
452453
---
453454
from matplotlib.patches import Polygon
454455
@@ -531,7 +532,7 @@ $$
531532
We plot a bar graph of hub-based eigenvector centrality for the sectors represented in {ref}`us_15sectors`.
532533
533534
```{code-cell} ipython3
534-
:tags: [hide-cell]
535+
:tags: [hide-input]
535536
536537
fig, ax = plt.subplots()
537538
ax.bar(codes, centrality, color=color_list, alpha=0.6)
@@ -573,7 +574,7 @@ The following figure displays the output multipliers for the sectors represented
573574
in {ref}`us_15sectors`.
574575
575576
```{code-cell} ipython3
576-
:tags: [hide-cell]
577+
:tags: [hide-input]
577578
578579
A, F = build_coefficient_matrices(Z, X)
579580
omult = qbn_io.katz_centrality(A, authority=True)

0 commit comments

Comments
 (0)