Skip to content

Commit a1b11af

Browse files
committed
add summaries and clear outputs
1 parent 5318d03 commit a1b11af

File tree

1 file changed

+20
-15
lines changed

1 file changed

+20
-15
lines changed

notebooks/animation.ipynb

Lines changed: 20 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -7,25 +7,19 @@
77
"# Animation"
88
]
99
},
10-
{
11-
"cell_type": "markdown",
12-
"metadata": {
13-
"collapsed": false,
14-
"jupyter": {
15-
"outputs_hidden": false
16-
}
17-
},
18-
"source": [
19-
"time stamp at 1:19"
20-
]
21-
},
2210
{
2311
"cell_type": "markdown",
2412
"metadata": {},
2513
"source": [
2614
"## Overview\n",
2715
"\n",
28-
"Summary text here\n"
16+
"Animations can be a useful and effective tool to visualize data, especially when that data changes over time. In this notebook, we will explore how to create animations using the `matplotlib` library. \n",
17+
"\n",
18+
"We will cover the two methods for creating animations in `matplotlib`, how to set up the elements of both types of animation, how to show the animation in jupyter notebooks, and how to save the animation to a file.\n",
19+
"\n",
20+
"1. Animation fundamentals with matplotlib\n",
21+
"2. Artist Animation\n",
22+
"3. Function Animation\n"
2923
]
3024
},
3125
{
@@ -144838,7 +144832,7 @@
144838144832
"source": [
144839144833
"## Summary\n",
144840144834
"\n",
144841-
"We learned the two ways to make animations in matplotlib: artist animation and function animation, how to display them in jupyter notebooks, and how to save them to a file.\n",
144835+
"Creating animations in matplotlib might seem intimidating, but is easier when you know the options and purpose of each method. These visualizations can be a powerful tool to display and understand time-dependent data.\n",
144842144836
"\n",
144843144837
"### What's next?\n"
144844144838
]
@@ -144849,8 +144843,19 @@
144849144843
"source": [
144850144844
"## Resources and references\n",
144851144845
"\n",
144852-
"- [Matplotlib animation documentation](https://matplotlib.org/stable/api/animation_api.html)"
144846+
"- [Matplotlib animation documentation](https://matplotlib.org/stable/api/animation_api.html)\n",
144847+
"- [`FuncAnimation` documentation](https://matplotlib.org/stable/api/_as_gen/matplotlib.animation.FuncAnimation.html)\n",
144848+
"- [`ArtistAnimation` documentation](https://matplotlib.org/stable/api/_as_gen/matplotlib.animation.ArtistAnimation.html)\n",
144849+
"- [`imshow` documentation](https://matplotlib.org/stable/api/_as_gen/matplotlib.pyplot.imshow.html)\n",
144850+
"- [GeoColor](https://www.star.nesdis.noaa.gov/GOES/documents/QuickGuide_CIRA_Geocolor_20171019.pdf) fact sheet\n",
144851+
"- [GOES-16](https://eospso.nasa.gov/missions/geostationary-operational-environmental-satellite-16) mission page\n",
144852+
"- [GOES Image Viewer](https://www.star.nesdis.noaa.gov/GOES/index.php)"
144853144853
]
144854+
},
144855+
{
144856+
"cell_type": "markdown",
144857+
"metadata": {},
144858+
"source": []
144854144859
}
144855144860
],
144856144861
"metadata": {

0 commit comments

Comments
 (0)