Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions lectures/_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@ latex:
sphinx:
extra_extensions: [sphinx_multitoc_numbering, sphinxext.rediraffe, sphinxcontrib.youtube, sphinx.ext.todo, sphinx_exercise, sphinx_togglebutton, sphinx_tojupyter]
config:
# myst-nb config
nb_render_image_options:
width: 80%
nb_mime_priority_overrides: [
['html', 'application/vnd.jupyter.widget-view+json', 10],
['html', 'application/javascript', 20],
Expand Down
2 changes: 0 additions & 2 deletions lectures/inventory_dynamics.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,7 @@ This lecture explores JAX implementations of the exercises in the lecture on [in
We will use the following imports:

```{code-cell} ipython3
%matplotlib inline
import matplotlib.pyplot as plt
plt.rcParams["figure.figsize"] = (11, 5) #set default figure size
import numpy as np
import jax
import jax.numpy as jnp
Expand Down
2 changes: 0 additions & 2 deletions lectures/kesten_processes.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,7 @@ This lecture focuses on implementing the same computations in JAX.
Let's start with some imports:

```{code-cell} ipython3
%matplotlib inline
import matplotlib.pyplot as plt
plt.rcParams["figure.figsize"] = (11, 5) #set default figure size
import quantecon as qe
import jax
import jax.numpy as jnp
Expand Down
1 change: 0 additions & 1 deletion lectures/troubleshooting.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ If your local environment is still not working you can do two things.
First, you can use a remote machine instead, by clicking on the Launch Notebook icon available for each lecture

```{image} _static/lecture_specific/troubleshooting/launch.png
```

Second, you can report an issue, so we can try to fix your local set up.
Expand Down
4 changes: 0 additions & 4 deletions lectures/wealth_dynamics.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,21 +32,17 @@ We will use the following imports.

```{code-cell} ipython3
import matplotlib.pyplot as plt
plt.rcParams["figure.figsize"] = (11, 5) #set default figure size
import jax
import jax.numpy as jnp
from collections import namedtuple
%matplotlib inline
```


Let's check the hardware we are running on:

```{code-cell} ipython3
!nvidia-smi
```


## Lorenz Curves and the Gini Coefficient

Before we investigate wealth dynamics, we briefly review some measures of
Expand Down