Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MAINT: remove %matplotlib inline #11

Merged
merged 1 commit into from
Apr 26, 2024
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/cattle_cycles.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ import matplotlib.pyplot as plt
from collections import namedtuple
from quantecon import DLE
from math import sqrt
%matplotlib inline
```

## The Model
Expand Down
1 change: 0 additions & 1 deletion lectures/cons_news.md
Original file line number Diff line number Diff line change
Expand Up @@ -607,7 +607,6 @@ As usual, we start by importing packages.
import numpy as np
import quantecon as qe
import matplotlib.pyplot as plt
%matplotlib inline
```

```{code-cell} python3
Expand Down
1 change: 0 additions & 1 deletion lectures/growth_in_dles.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ We require the following imports
```{code-cell} ipython
import numpy as np
import matplotlib.pyplot as plt
%matplotlib inline
from quantecon import DLE
```

Expand Down
1 change: 0 additions & 1 deletion lectures/hs_invertibility_example.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ import quantecon as qe
import matplotlib.pyplot as plt
from quantecon import DLE
from math import sqrt
%matplotlib inline
```

This lecture describes an early contribution to what is now often called
Expand Down
1 change: 0 additions & 1 deletion lectures/irfs_in_hall_model.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ We'll make these imports:
```{code-cell} ipython
import numpy as np
import matplotlib.pyplot as plt
%matplotlib inline
from quantecon import DLE
```

Expand Down
1 change: 0 additions & 1 deletion lectures/kalman_2.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ In addition to what's in Anaconda, this lecture will need the following librarie
To conduct simulations, we bring in these imports, as in {doc}`A First Look at the Kalman filter <kalman>`.

```{code-cell} ipython3
%matplotlib inline
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/lqramsey.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,6 @@ We'll need the following imports:
import sys
import numpy as np
import matplotlib.pyplot as plt
%matplotlib inline
from numpy import sqrt, eye, zeros, cumsum
from numpy.random import randn
import scipy.linalg
Expand Down
1 change: 0 additions & 1 deletion lectures/lucas_asset_pricing_dles.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ We'll also need the following imports
import numpy as np
import matplotlib.pyplot as plt
from quantecon import DLE
%matplotlib inline
```

We use a linear-quadratic version of an economy that Lucas (1978) {cite}`Lucas1978` used
Expand Down
1 change: 0 additions & 1 deletion lectures/markov_jump_lq.md
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,6 @@ import quantecon as qe
import matplotlib.pyplot as plt
from mpl_toolkits.mplot3d import Axes3D

%matplotlib inline
```

```{code-cell} python3
Expand Down
1 change: 0 additions & 1 deletion lectures/muth_kalman.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ We'll also need the following imports:

```{code-cell} ipython
import matplotlib.pyplot as plt
%matplotlib inline
import numpy as np

from quantecon import Kalman
Expand Down
1 change: 0 additions & 1 deletion lectures/permanent_income_dles.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ We'll also require the following imports
```{code-cell} ipython
import numpy as np
import matplotlib.pyplot as plt
%matplotlib inline
from quantecon import DLE

np.set_printoptions(suppress=True, precision=4)
Expand Down
1 change: 0 additions & 1 deletion lectures/rosen_schooling_model.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ import numpy as np
import matplotlib.pyplot as plt
from collections import namedtuple
from quantecon import DLE
%matplotlib inline
```

## A One-Occupation Model
Expand Down
1 change: 0 additions & 1 deletion lectures/smoothing.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,6 @@ Let's start with some imports:
import numpy as np
import quantecon as qe
import matplotlib.pyplot as plt
%matplotlib inline
import scipy.linalg as la
```

Expand Down
1 change: 0 additions & 1 deletion lectures/smoothing_tax.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,6 @@ Let's start with some standard imports:
import numpy as np
import quantecon as qe
import matplotlib.pyplot as plt
%matplotlib inline
```

To exploit the isomorphism between consumption-smoothing and tax-smoothing models, we simply use code from {doc}`Consumption Smoothing with Complete and Incomplete Markets <smoothing>`
Expand Down
1 change: 0 additions & 1 deletion lectures/tax_smoothing_1.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ Let's start with some standard imports:
import quantecon as qe
import numpy as np
import matplotlib.pyplot as plt
%matplotlib inline
```

This lecture uses the method of **Markov jump linear quadratic dynamic programming** that is described in lecture
Expand Down
1 change: 0 additions & 1 deletion lectures/tax_smoothing_2.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,6 @@ Let's start with some standard imports:
import quantecon as qe
import numpy as np
import matplotlib.pyplot as plt
%matplotlib inline
```

## Two example specifications
Expand Down
1 change: 0 additions & 1 deletion lectures/tax_smoothing_3.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@ Let's start with some standard imports:
import quantecon as qe
import numpy as np
import matplotlib.pyplot as plt
%matplotlib inline
```

## Roll-Over Risk
Expand Down
Loading