Skip to content

Commit 0528e32

Browse files
authored
MAINT: review and fix FutureWarnings (#216)
1 parent 89a2761 commit 0528e32

File tree

1 file changed

+1
-13
lines changed

1 file changed

+1
-13
lines changed

lectures/overborrowing.md

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ jupytext:
44
extension: .md
55
format_name: myst
66
format_version: 0.13
7-
jupytext_version: 1.16.1
7+
jupytext_version: 1.16.7
88
kernelspec:
99
display_name: Python 3 (ipykernel)
1010
language: python
@@ -28,7 +28,6 @@ In addition to what’s in Anaconda, this lecture will need the following librar
2828

2929
We use the following imports.
3030

31-
3231
```{code-cell} ipython3
3332
import time
3433
import jax
@@ -883,10 +882,6 @@ Nonetheless, it is qualitatively similar.
883882

884883
+++
885884

886-
887-
888-
889-
890885
## Exercise
891886

892887

@@ -968,13 +963,6 @@ B_plan = generate_borrowing_sequence(H_plan, y_t_series, y_n_series)
968963
plan_b_sequence = b_grid[B_plan]
969964
```
970965

971-
We suppress some annoying warnings produced by the current version of `seaborn`
972-
973-
```{code-cell} ipython3
974-
import warnings
975-
warnings.simplefilter(action='ignore', category=FutureWarning)
976-
```
977-
978966
Now let's plot the distributions using a kernel density estimator.
979967

980968
```{code-cell} ipython3

0 commit comments

Comments
 (0)