Skip to content

Commit 97d3131

Browse files
authored
Change to np.NAN --> np.nan (#570)
This is deprecated and removed fully in numpy 2.0. Please see: https://numpy.org/doc/1.26/reference/constants.html#numpy.NAN
1 parent ce0314d commit 97d3131

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lectures/money_inflation.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -901,7 +901,7 @@ def draw_iterations(p0s, model, line_params, num_steps):
901901
axes[1].plot(time_steps, P, **line_params)
902902
903903
# Calculate R_t
904-
R = np.insert(P[:-1] / P[1:], 0, np.NAN)
904+
R = np.insert(P[:-1] / P[1:], 0, np.nan)
905905
axes[2].plot(time_steps, R, **line_params)
906906
907907
# Add line and text annotations to the subgraph

0 commit comments

Comments
 (0)