Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 95580d3

Browse files
authored
Merge pull request #9552 from divyam3897/updateDescriptions
animation: Remove examples keyword
2 parents 7f88c65 + 1ba9746 commit 95580d3

7 files changed

+8
-9
lines changed

examples/animation/animate_decay.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Decay
44
=====
55
6-
This example showcases a sinusoidal decay animation.
6+
A sinusoidal decay animation.
77
"""
88

99

examples/animation/basic_example.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
Simple animation examples
44
=========================
55
6-
This example contains two animations. The first is a random walk plot. The
7-
second is an image animation.
6+
Two animations where the first is a random walk plot and
7+
the second is an image animation.
88
"""
99

1010
import numpy as np

examples/animation/dynamic_image.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
An animated image
44
=================
55
6-
This example demonstrates how to animate an image.
6+
Animation of an image.
77
"""
88
import numpy as np
99
import matplotlib.pyplot as plt

examples/animation/dynamic_image2.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@
33
An animated image using a list of images
44
========================================
55
6-
This examples demonstrates how to animate an image from a list of images (or
7-
Artists).
6+
Animate an image from a list of images (or Artists).
87
"""
98
import numpy as np
109
import matplotlib.pyplot as plt

examples/animation/image_slices_viewer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Image Slices Viewer
44
===================
55
6-
This example demonstrates how to scroll through 2D image slices of a 3D array.
6+
Scroll through 2D image slices of a 3D array.
77
"""
88
from __future__ import print_function
99

examples/animation/moviewriter_sgskip.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
MovieWriter
44
===========
55
6-
This example uses a MovieWriter directly to grab individual frames and write
6+
Use a MovieWriter directly to grab individual frames and write
77
them to a file. This avoids any event loop integration, but has the advantage
88
of working with even the Agg backend. This is not recommended for use in an
99
interactive setting.

examples/animation/simple_3danim.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
3D animation
44
============
55
6-
A simple example of an animated plot... In 3D!
6+
An animated plot in 3D.
77
"""
88
import numpy as np
99
import matplotlib.pyplot as plt

0 commit comments

Comments
 (0)