Skip to content

Commit

Permalink
Delete %matplotlib inline in ALL lectures (#429)
Browse files Browse the repository at this point in the history
Delete %matplotlib inline in all the lectures. These are the lectures being altered:

- [geom_series]
- [schelling]
- [scaler_dynam]
- [ar1_processes]
- [time_series_with_matrices]
- [lp_intro]
  • Loading branch information
longye-tian authored Apr 26, 2024
1 parent c879389 commit a454f5d
Show file tree
Hide file tree
Showing 6 changed files with 0 additions and 6 deletions.
1 change: 0 additions & 1 deletion lectures/ar1_processes.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@ Let's start with some imports:

```{code-cell} ipython
import numpy as np
%matplotlib inline
import matplotlib.pyplot as plt
plt.rcParams["figure.figsize"] = (11, 5) #set default figure size
```
Expand Down
1 change: 0 additions & 1 deletion lectures/geom_series.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ These and other applications prove the truth of the wise crack that
Below we'll use the following imports:

```{code-cell} ipython
%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/lp_intro.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ from ortools.linear_solver import pywraplp
from scipy.optimize import linprog
import matplotlib.pyplot as plt
from matplotlib.patches import Polygon
%matplotlib inline
```

Let's start with some examples of linear programming problem.
Expand Down
1 change: 0 additions & 1 deletion lectures/scalar_dynam.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ and understand key concepts.
Let's start with some standard imports:

```{code-cell} ipython
%matplotlib inline
import matplotlib.pyplot as plt
import numpy as np
```
Expand Down
1 change: 0 additions & 1 deletion lectures/schelling.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,6 @@ awarded the 2005 Nobel Prize in Economic Sciences (joint with Robert Aumann).
Let's start with some imports:

```{code-cell} ipython3
%matplotlib inline
import matplotlib.pyplot as plt
from random import uniform, seed
from math import sqrt
Expand Down
1 change: 0 additions & 1 deletion lectures/time_series_with_matrices.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ We will use the following imports:

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

0 comments on commit a454f5d

Please sign in to comment.