You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: notebooks/animation.ipynb
+2-2
Original file line number
Diff line number
Diff line change
@@ -71,8 +71,8 @@
71
71
"## Animation fundamentals with `matplotlib`\n",
72
72
"\n",
73
73
"There are two different methods of creating animations with `matplotlib`:\n",
74
-
"1. Function animation iteratively modifies data on a pre-existing figure to produce an animation\n",
75
-
"2. Artist animations pulls from a list of pre-made [artists](https://matplotlib.org/stable/api/artist_api.html#matplotlib.artist.Artist) to draw in each frame to produce an animation\n",
74
+
"1. Artist animations pulls from a list of pre-made [artists](https://matplotlib.org/stable/api/artist_api.html#matplotlib.artist.Artist) to draw in each frame to produce an animation\n",
75
+
"2. Function animation iteratively modifies data on a pre-existing figure to produce an animation\n",
76
76
"\n",
77
77
"Generally, function animation is easier to use, but artist animation can be more flexible for certain applications. We'll cover both methods in this notebook."
0 commit comments