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

Skip to content

Commit 5dd0d01

Browse files
committed
Address PR comments
1 parent 31168cb commit 5dd0d01

File tree

12 files changed

+15
-17
lines changed

12 files changed

+15
-17
lines changed

examples/images_contours_and_fields/contourf_demo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Contourf Demo
44
=============
55
6-
Example use of the `contourf` function to create filled contour plots.
6+
How to use the ``contourf`` function to create filled contour plots.
77
"""
88
import numpy as np
99
import matplotlib.pyplot as plt

examples/images_contours_and_fields/contourf_hatching.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Contourf Hatching
44
=================
55
6-
Demo of filled contour plots with of hatched patterns.
6+
Demo filled contour plots with of hatched patterns.
77
"""
88
import matplotlib.pyplot as plt
99
import numpy as np
@@ -30,8 +30,6 @@
3030
)
3131
plt.colorbar()
3232

33-
###############################################################################
34-
3533
# ---------------------------------------------
3634
# | Plot #2 |
3735
# ---------------------------------------------

examples/pylab_examples/axes_demo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Axes Demo
44
=========
55
6-
Example use of `plt.axes` to create inset axes within the main plot axes.
6+
Example use of ``plt.axes`` to create inset axes within the main plot axes.
77
"""
88
import matplotlib.pyplot as plt
99
import numpy as np

examples/pylab_examples/axhspan_demo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Axhspan Demo
44
============
55
6-
The example shows how to create lines or rectangles that span the axes in either the horizontal or vertical direction.
6+
Create lines or rectangles that span the axes in either the horizontal or vertical direction.
77
"""
88
import numpy as np
99
import matplotlib.pyplot as plt

examples/pylab_examples/axis_equal_demo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Axis Equal Demo
44
===============
55
6-
This example how to set and adjust plots with equal axis ratios.
6+
How to set and adjust plots with equal axis ratios.
77
"""
88

99
import matplotlib.pyplot as plt

examples/pylab_examples/figure_title.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Figure Title
44
============
55
6-
Example use of `title` and `suptitle` to create subplot titles and a centered figure title, respectively.
6+
Create a figure with separate subplot titles and a centered figure title.
77
"""
88
from matplotlib.font_manager import FontProperties
99
import matplotlib.pyplot as plt

examples/pylab_examples/fill_betweenx_demo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Fill Betweenx Demo
44
==================
55
6-
This example shows how to use `fill_betweenx` to color between two horizontal curves.
6+
Using ``fill_betweenx`` to color between two horizontal curves.
77
"""
88
import matplotlib.mlab as mlab
99
from matplotlib.pyplot import figure, show

examples/pylab_examples/plotfile_demo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Plotfile Demo
44
=============
55
6-
Example use of `plotfile` to plot data directly from a file.
6+
Example use of ``plotfile`` to plot data directly from a file.
77
"""
88
import matplotlib.pyplot as plt
99
import numpy as np

examples/pylab_examples/simple_plot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Simple Plot
44
===========
55
6-
Simple example of a simple plot.
6+
Create a simple plot.
77
"""
88
import matplotlib.pyplot as plt
99
import numpy as np

examples/pylab_examples/specgram_demo.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
2-
=============
3-
Specgram Demo
4-
=============
2+
================
3+
Spectrogram Demo
4+
================
55
66
Demo of a spectrogram plot.
77
"""

examples/pylab_examples/symlog_demo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Symlog Demo
44
===========
55
6-
Example use of symlog (symmetrical log) axis scaling.
6+
Example use of symlog (symmetric log) axis scaling.
77
"""
88
import matplotlib.pyplot as plt
99
import numpy as np

examples/pylab_examples/xcorr_demo.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
"""
22
==========
3-
Xcorr Demo
3+
Cross-correlation Demo
44
==========
55
6-
Example use of cross-correlation (`xcorr`) and auto-correlation (`acorr`) plots.
6+
Example use of cross-correlation (``xcorr``) and auto-correlation (``acorr``) plots.
77
"""
88
import matplotlib.pyplot as plt
99
import numpy as np

0 commit comments

Comments
 (0)