Skip to content

Commit ee47b4b

Browse files
authored
[geom_series] fix MatplotlibDeprecationWarning (#255)
1 parent f9ec4fd commit ee47b4b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lectures/geom_series.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -769,7 +769,7 @@ visualization!
769769
# Second view
770770
fig = plt.figure()
771771
T = 3
772-
ax = fig.gca(projection='3d')
772+
ax = plt.subplot(projection='3d')
773773
r = np.arange(0.01, 0.99, 0.005)
774774
g = np.arange(0.011, 0.991, 0.005)
775775

0 commit comments

Comments
 (0)