10000 animation: Remove examples keyword by divyam3897 · Pull Request #9552 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

animation: Remove examples keyword #9552

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 24, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/animation/animate_decay.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Decay
=====

This example showcases a sinusoidal decay animation.
A sinusoidal decay animation.
"""


Expand Down
4 changes: 2 additions & 2 deletions examples/animation/basic_example.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
Simple animation examples
=========================

This example contains two animations. The first is a random walk plot. The
second is an image animation.
Two animations where the first is a random walk plot and
the second is an image animation.
"""

import numpy as np
Expand Down
2 changes: 1 addition & 1 deletion examples/animation/dynamic_image.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
An animated image
=================

This example demonstrates how to animate an image.
Animation of an image.
"""
import numpy as np
import matplotlib.pyplot as plt
Expand Down
3 changes: 1 addition & 2 deletions examples/animation/dynamic_image2.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@
An animated image using a list of images
========================================

This examples demonstrates how to animate an image from a list of images (or
Artists).
Animate an image from a list of images (or Artists).
"""
import numpy as np
import matplotlib.pyplot as plt
Expand Down
2 changes: 1 addition & 1 deletion examples/animation/image_slices_viewer.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Image Slices Viewer
===================

This example demonstrates how to scroll through 2D image slices of a 3D array.
Scroll through 2D image slices of a 3D array.
"""
from __future__ import print_function

Expand Down
2 changes: 1 addition & 1 deletion examples/animation/moviewriter_sgskip.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
MovieWriter
===========

This example uses a MovieWriter directly to grab individual frames and write
Use a MovieWriter directly to grab individual frames and write
them to a file. This avoids any event loop integration, but has the advantage
of working with even the Agg backend. This is not recommended for use in an
interactive setting.
Expand Down
2 changes: 1 addition & 1 deletion examples/animation/simple_3danim.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
3D animation
============

A simple example of an animated plot... In 3D!
An animated plot in 3D.
"""
import numpy as np
import matplotlib.pyplot as plt
Expand Down
0