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
1 change: 0 additions & 1 deletion lectures/aiyagari.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ Let's start with some imports:

```{code-cell} ipython3
import matplotlib.pyplot as plt
plt.rcParams["figure.figsize"] = (11, 5) #set default figure size
import numpy as np
from quantecon.markov import DiscreteDP
from numba import jit
Expand Down
1 change: 0 additions & 1 deletion lectures/cake_eating_problem.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ In what follows, we require the following imports:

```{code-cell} ipython
import matplotlib.pyplot as plt
plt.rcParams["figure.figsize"] = (11, 5) #set default figure size
import numpy as np
```

Expand Down
1 change: 0 additions & 1 deletion lectures/career.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ We begin with some imports:

```{code-cell} ipython
import matplotlib.pyplot as plt
plt.rcParams["figure.figsize"] = (11, 5) #set default figure size
import numpy as np
import quantecon as qe
from numba import jit, prange
Expand Down
1 change: 0 additions & 1 deletion lectures/cass_koopmans_2.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,6 @@ Let's start with some standard imports:

```{code-cell} ipython
import matplotlib.pyplot as plt
plt.rcParams["figure.figsize"] = (11, 5) #set default figure size
from numba import jit, float64
from numba.experimental import jitclass
import numpy as np
Expand Down
1 change: 0 additions & 1 deletion lectures/exchangeable.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@ Let’s start with some imports:
tags: [hide-output]
---
import matplotlib.pyplot as plt
plt.rcParams["figure.figsize"] = (11, 5) #set default figure size
from numba import jit, vectorize
from math import gamma
import scipy.optimize as op
Expand Down
1 change: 0 additions & 1 deletion lectures/finite_markov.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ Let's start with some standard imports:

```{code-cell} ipython
import matplotlib.pyplot as plt
plt.rcParams["figure.figsize"] = (11, 5) #set default figure size
import quantecon as qe
import numpy as np
from mpl_toolkits.mplot3d import Axes3D
Expand Down
1 change: 0 additions & 1 deletion lectures/inventory_dynamics.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ Let's start with some imports

```{code-cell} ipython3
import matplotlib.pyplot as plt
plt.rcParams["figure.figsize"] = (11, 5) #set default figure size
import numpy as np
from numba import jit, float64, prange
from numba.experimental import jitclass
Expand Down
1 change: 0 additions & 1 deletion lectures/lake_model.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@ Let's start with some imports:

```{code-cell} ipython
import matplotlib.pyplot as plt
plt.rcParams["figure.figsize"] = (11, 5) #set default figure size
import numpy as np
from quantecon import MarkovChain
from scipy.stats import norm
Expand Down
1 change: 0 additions & 1 deletion lectures/likelihood_bayes.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ We'll begin by loading some Python modules.
:hide-output: false

import matplotlib.pyplot as plt
plt.rcParams["figure.figsize"] = (11, 5) #set default figure size
import numpy as np
from numba import vectorize, jit, prange
from math import gamma
Expand Down
1 change: 0 additions & 1 deletion lectures/linear_algebra.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,6 @@ Let's start with some imports:

```{code-cell} ipython
import matplotlib.pyplot as plt
plt.rcParams["figure.figsize"] = (11, 5) #set default figure size
import numpy as np
from matplotlib import cm
from mpl_toolkits.mplot3d import Axes3D
Expand Down
1 change: 0 additions & 1 deletion lectures/lln_clt.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ We'll need the following imports:

```{code-cell} ipython
import matplotlib.pyplot as plt
plt.rcParams["figure.figsize"] = (11, 5) #set default figure size
import random
import numpy as np
from scipy.stats import t, beta, lognorm, expon, gamma, uniform
Expand Down
1 change: 0 additions & 1 deletion lectures/lq_inventories.md
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,6 @@ its consequences.

```{code-cell} ipython
import matplotlib.pyplot as plt
plt.rcParams["figure.figsize"] = (11, 5) #set default figure size
import numpy as np
import quantecon as qe
```
Expand Down
1 change: 0 additions & 1 deletion lectures/lqcontrol.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@ Let's start with some imports:

```{code-cell} ipython
import matplotlib.pyplot as plt
plt.rcParams["figure.figsize"] = (11, 5) #set default figure size
import numpy as np
from quantecon import LQ
```
Expand Down
1 change: 0 additions & 1 deletion lectures/markov_asset.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,6 @@ Let's start with some imports:

```{code-cell} ipython
import matplotlib.pyplot as plt
plt.rcParams["figure.figsize"] = (11, 5) #set default figure size
import numpy as np
import quantecon as qe
from numpy.linalg import eigvals, solve
Expand Down
1 change: 0 additions & 1 deletion lectures/mccall_model.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ Let's start with some imports:

```{code-cell} ipython
import matplotlib.pyplot as plt
plt.rcParams["figure.figsize"] = (11, 5) #set default figure size
import numpy as np
from numba import jit, float64
from numba.experimental import jitclass
Expand Down
1 change: 0 additions & 1 deletion lectures/mix_model.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,6 @@ As usual, we'll start by importing some Python tools.
:hide-output: false

import matplotlib.pyplot as plt
plt.rcParams["figure.figsize"] = (11, 5) #set default figure size
import numpy as np
from numba import vectorize, jit
from math import gamma
Expand Down
1 change: 0 additions & 1 deletion lectures/mle.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ We'll require the following imports:

```{code-cell} ipython
import matplotlib.pyplot as plt
plt.rcParams["figure.figsize"] = (11, 5) #set default figure size
import numpy as np
from numpy import exp
from scipy.special import factorial, gammaln
Expand Down
1 change: 0 additions & 1 deletion lectures/multi_hyper.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,6 @@ Let's start with some imports.

```{code-cell} ipython
import matplotlib.pyplot as plt
plt.rcParams["figure.figsize"] = (11, 5) #set default figure size
import numpy as np
from scipy.special import comb
from scipy.stats import normaltest
Expand Down
1 change: 0 additions & 1 deletion lectures/multivariate_normal.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@ We use the following imports:

```{code-cell} ipython
import matplotlib.pyplot as plt
plt.rcParams["figure.figsize"] = (11, 5) #set default figure size
import numpy as np
from numba import jit
import statsmodels.api as sm
Expand Down
2 changes: 0 additions & 2 deletions lectures/newton_method.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,6 @@ from scipy.optimize import root
from autograd import jacobian
# Thinly-wrapped numpy to enable automatic differentiation
import autograd.numpy as np

plt.rcParams["figure.figsize"] = (10, 5.7)
```

## Fixed Point Computation Using Newton's Method
Expand Down
1 change: 0 additions & 1 deletion lectures/ols.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@ Let's start with some imports:

```{code-cell} ipython
import matplotlib.pyplot as plt
plt.rcParams["figure.figsize"] = (11, 5) #set default figure size
import numpy as np
import pandas as pd
import statsmodels.api as sm
Expand Down
1 change: 0 additions & 1 deletion lectures/optgrowth.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ Let's start with some imports:

```{code-cell} ipython
import matplotlib.pyplot as plt
plt.rcParams["figure.figsize"] = (11, 5) #set default figure size
import numpy as np
from scipy.interpolate import interp1d
from scipy.optimize import minimize_scalar
Expand Down
1 change: 0 additions & 1 deletion lectures/perm_income.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ Let's start with some imports

```{code-cell} ipython
import matplotlib.pyplot as plt
plt.rcParams["figure.figsize"] = (11, 5) #set default figure size
import numpy as np
import random
from numba import jit
Expand Down
1 change: 0 additions & 1 deletion lectures/rational_expectations.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@ Let's start with some standard imports:

```{code-cell} ipython
import matplotlib.pyplot as plt
plt.rcParams["figure.figsize"] = (11, 5) #set default figure size
import numpy as np
```

Expand Down
1 change: 0 additions & 1 deletion lectures/samuelson.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ Let's start with some standard imports:

```{code-cell} ipython
import matplotlib.pyplot as plt
plt.rcParams["figure.figsize"] = (11, 5) #set default figure size
import numpy as np
```

Expand Down
1 change: 0 additions & 1 deletion lectures/sir_model.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ We will use the following standard imports:

```{code-cell} ipython3
import matplotlib.pyplot as plt
plt.rcParams["figure.figsize"] = (11, 5) #set default figure size
import numpy as np
from numpy import exp
```
Expand Down
1 change: 0 additions & 1 deletion lectures/uncertainty_traps.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ Let's start with some standard imports:

```{code-cell} ipython
import matplotlib.pyplot as plt
plt.rcParams["figure.figsize"] = (11, 5) #set default figure size
import numpy as np
```

Expand Down
1 change: 0 additions & 1 deletion lectures/wealth_dynamics.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,6 @@ 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 numpy as np
import quantecon as qe
from numba import jit, float64, prange
Expand Down
Loading