GitHub

Original file line numberDiff line numberDiff line change

@@ -57,7 +57,6 @@ Let's start with some imports:

5757
5858

```{code-cell} ipython3

5959

import matplotlib.pyplot as plt

60-

plt.rcParams["figure.figsize"] = (11, 5) #set default figure size

6160

import numpy as np

6261

from quantecon.markov import DiscreteDP

6362

from numba import jit

Original file line numberDiff line numberDiff line change

@@ -41,7 +41,6 @@ In what follows, we require the following imports:

4141
4242

```{code-cell} ipython

4343

import matplotlib.pyplot as plt

44-

plt.rcParams["figure.figsize"] = (11, 5) #set default figure size

4544

import numpy as np

4645

```

4746
Original file line numberDiff line numberDiff line change

@@ -48,7 +48,6 @@ We begin with some imports:

4848
4949

```{code-cell} ipython

5050

import matplotlib.pyplot as plt

51-

plt.rcParams["figure.figsize"] = (11, 5) #set default figure size

5251

import numpy as np

5352

import quantecon as qe

5453

from numba import jit, prange

Original file line numberDiff line numberDiff line change

@@ -67,7 +67,6 @@ Let's start with some standard imports:

6767
6868

```{code-cell} ipython

6969

import matplotlib.pyplot as plt

70-

plt.rcParams["figure.figsize"] = (11, 5) #set default figure size

7170

from numba import jit, float64

7271

from numba.experimental import jitclass

7372

import numpy as np

Original file line numberDiff line numberDiff line change

@@ -71,7 +71,6 @@ Let’s start with some imports:

7171

tags: [hide-output]

7272

---

7373

import matplotlib.pyplot as plt

74-

plt.rcParams["figure.figsize"] = (11, 5) #set default figure size

7574

from numba import jit, vectorize

7675

from math import gamma

7776

import scipy.optimize as op

Original file line numberDiff line numberDiff line change

@@ -53,7 +53,6 @@ Let's start with some standard imports:

5353
5454

```{code-cell} ipython

5555

import matplotlib.pyplot as plt

56-

plt.rcParams["figure.figsize"] = (11, 5) #set default figure size

5756

import quantecon as qe

5857

import numpy as np

5958

from mpl_toolkits.mplot3d import Axes3D

Original file line numberDiff line numberDiff line change

@@ -48,7 +48,6 @@ Let's start with some imports

4848
4949

```{code-cell} ipython3

5050

import matplotlib.pyplot as plt

51-

plt.rcParams["figure.figsize"] = (11, 5) #set default figure size

5251

import numpy as np

5352

from numba import jit, float64, prange

5453

from numba.experimental import jitclass

Original file line numberDiff line numberDiff line change

@@ -69,7 +69,6 @@ Let's start with some imports:

6969
7070

```{code-cell} ipython

7171

import matplotlib.pyplot as plt

72-

plt.rcParams["figure.figsize"] = (11, 5) #set default figure size

7372

import numpy as np

7473

from quantecon import MarkovChain

7574

from scipy.stats import norm

Original file line numberDiff line numberDiff line change

@@ -52,7 +52,6 @@ We'll begin by loading some Python modules.

5252

:hide-output: false

5353
5454

import matplotlib.pyplot as plt

55-

plt.rcParams["figure.figsize"] = (11, 5) #set default figure size

5655

import numpy as np

5756

from numba import vectorize, jit, prange

5857

from math import gamma

Original file line numberDiff line numberDiff line change

@@ -74,7 +74,6 @@ Let's start with some imports:

7474
7575

```{code-cell} ipython

7676

import matplotlib.pyplot as plt

77-

plt.rcParams["figure.figsize"] = (11, 5) #set default figure size

7877

import numpy as np

7978

from matplotlib import cm

8079

from mpl_toolkits.mplot3d import Axes3D

Read the original on github.com ↗