Skip to content

Commit a73ba0f

Browse files
Copilotmmcky
andauthored
[style] Remove local figsize adjustments from all lecture files (#574)
* Initial plan * Remove all local figsize settings from 28 lecture files Co-authored-by: mmcky <8263752+mmcky@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: mmcky <8263752+mmcky@users.noreply.github.com>
1 parent 1908695 commit a73ba0f

28 files changed

+0
-29
lines changed

lectures/aiyagari.md

Lines changed: 0 additions & 1 deletion
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

lectures/cake_eating_problem.md

Lines changed: 0 additions & 1 deletion
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

lectures/career.md

Lines changed: 0 additions & 1 deletion
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

lectures/cass_koopmans_2.md

Lines changed: 0 additions & 1 deletion
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

lectures/exchangeable.md

Lines changed: 0 additions & 1 deletion
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

lectures/finite_markov.md

Lines changed: 0 additions & 1 deletion
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

lectures/inventory_dynamics.md

Lines changed: 0 additions & 1 deletion
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

lectures/lake_model.md

Lines changed: 0 additions & 1 deletion
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

lectures/likelihood_bayes.md

Lines changed: 0 additions & 1 deletion
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

lectures/linear_algebra.md

Lines changed: 0 additions & 1 deletion
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

0 commit comments

Comments
 (0)