8000 MEP12 API examples by NelleV · Pull Request #7439 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

MEP12 API examples #7439

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 2 commits into from
Nov 11, 2016
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
FIX reviewer's comments
  • Loading branch information
NelleV committed Nov 11, 2016
commit e00ee311d6467318da1275b1e3fbe0c8c4fe1c9b
2 changes: 1 addition & 1 deletion examples/api/bbox_intersect.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Changing colors of lines intersecting a box
===========================================

The lines interescting the rectangle are colored in red, while the other one
The lines intersecting the rectangle are colored in red, while the others
are left as blue lines. This example showcases the `intersect_bbox` function.

"""
Expand Down
2 changes: 1 addition & 1 deletion examples/api/collections_demo.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'''
=========================================================
Line and Poly and RegularPoly Collection with autoscaling
Line, Poly and RegularPoly Collection with autoscaling
=========================================================
8000
For the first two subplots, we will use spirals. Their
Expand Down
2 changes: 1 addition & 1 deletion examples/api/colorbar_basics.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Colorbar
========

This example shows how to use colorbar by specify the mappable object (here
This example shows how to use colorbar by specifying the mappable object (here
the imshow returned object) and the axes to attach the colorbar to.
"""

Expand Down
2 changes: 1 addition & 1 deletion examples/api/compound_path.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
=============

Make a compound path -- in this case two simple polygons, a rectangle
and a triangle. Use CLOSEOPOLY and MOVETO for the different parts of
and a triangle. Use CLOSEPOLY and MOVETO for the different parts of
the compound path
"""
import numpy as np
Expand Down
8 changes: 4 additions & 4 deletions examples/api/date_index_formatter.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
"""
====================================
Custom tick formatter for timeseries
====================================
=====================================
Custom tick formatter for time series
=====================================

When plotting time series, e.g., financial time series, one often wants
to leave out days on which there is no data, eh weekends. The example
to leave out days on which there is no data, i.e. weekends. The example
below shows how to use an 'index formatter' to achieve the desired plot
"""
from __future__ import print_function
Expand Down
2 changes: 1 addition & 1 deletion examples/api/engineering_formatter.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'''
=========================================
Labeling ticks using engineering notations
Labeling ticks using engineering notation
=========================================

Demo to show use of the engineering Formatter.
Expand Down
2 changes: 1 addition & 1 deletion examples/api/filled_step.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""
=========================
Hatched filled histograms
Hatch-filled histograms
=========================

This example showcases the hatching capabilities of matplotlib by plotting
Expand Down
2 changes: 1 addition & 1 deletion examples/api/mathtext_asarray.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
A mathtext image as numpy array
===============================

This example shows how to make images from latex strings.
This example shows how to make images from LaTeX strings.
"""

import matplotlib.mathtext as mathtext
Expand Down
2 changes: 1 addition & 1 deletion examples/api/quad_bezier.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Bezier Curve
============

This example showcases the PathPatch object to create a bezier polycurve path
This example showcases the PathPatch object to create a Bezier polycurve path
patch.
"""

Expand Down
6 changes: 3 additions & 3 deletions examples/api/radar_chart.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
=====================================
Radar chart (aka spider or star chart
=====================================
======================================
Radar chart (aka spider or star chart)
======================================

This example creates a radar chart, also known as a spider or star chart [1]_.

Expand Down
6 changes: 3 additions & 3 deletions examples/api/sankey_demo_old.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
========================
Yet another Sankey chart
========================
==========================
Yet another Sankey diagram
==========================

This example showcases a more complex sankey diagram.
"""
Expand Down
4 changes: 2 additions & 2 deletions examples/api/sankey_demo_rankine.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
"""
===================
Rankine power Cycle
Rankine power cycle
===================

Demonstrate the Sankey class with a practicle example of a Rankine power
Demonstrate the Sankey class with a practical example of a Rankine power
cycle.

"""
Expand Down
6 changes: 3 additions & 3 deletions examples/api/scatter_piecharts.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
====================================
Scatter plot with pie charts markers
====================================
===================================
Scatter plot with pie chart markers
===================================

This example makes custom 'pie charts' as the markers for a scatter plot.

Expand Down
0