Skip to content

Delete %matplotlib inline in all lectures #429

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

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/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