Skip to content

Commit 5a092db

Browse files
committed
Merge branch 'main' into revert_graphviz
2 parents 8c61389 + 2d81dbd commit 5a092db

File tree

7 files changed

+1126
-7
lines changed

7 files changed

+1126
-7
lines changed

lectures/_config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ sphinx:
5353
og_logo_url: https://assets.quantecon.org/img/qe-og-logo.png
5454
description: This website presents introductory lectures on computational economics, designed and written by Thomas J. Sargent and John Stachurski.
5555
keywords: Python, QuantEcon, Quantitative Economics, Economics, Sloan, Alfred P. Sloan Foundation, Tom J. Sargent, John Stachurski
56-
# analytics:
57-
# google_analytics_id: UA-54984338-9
56+
analytics:
57+
google_analytics_id: G-QDS1YRJNGM
5858
launch_buttons:
5959
notebook_interface : classic # The interface interactive links will activate ["classic", "jupyterlab"]
6060
binderhub_url : https://mybinder.org # The URL of the BinderHub (e.g., https://mybinder.org)

lectures/networks.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -98,8 +98,8 @@ tags: [hide-input]
9898
ch1_data = qbn_data.introduction()
9999
export_figures = False
100100
101-
DG = ch1_data['aircraft_network_2019']
102-
pos = ch1_data['aircraft_network_2019_pos']
101+
DG = ch1_data['aircraft_network']
102+
pos = ch1_data['aircraft_network_pos']
103103
104104
centrality = nx.eigenvector_centrality(DG)
105105
node_total_exports = qbn_io.node_total_exports(DG)
@@ -407,9 +407,9 @@ mystnb:
407407
name: financial_network
408408
tags: [hide-input]
409409
---
410-
Z = ch1_data["adjacency_matrix_2022"]["Z"]
411-
Z_visual= ch1_data["adjacency_matrix_2022"]["Z_visual"]
412-
countries = ch1_data["adjacency_matrix_2022"]["countries"]
410+
Z = ch1_data["adjacency_matrix"]["Z"]
411+
Z_visual= ch1_data["adjacency_matrix"]["Z_visual"]
412+
countries = ch1_data["adjacency_matrix"]["countries"]
413413
414414
G = qbn_io.adjacency_matrix_to_graph(Z_visual, countries, tol=0.03)
415415

0 commit comments

Comments
 (0)