Skip to content

Change ie into i.e. #3749

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

Closed
wants to merge 4 commits into from
Closed
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
ie (without a comma) to i.e.,
Used:

```bash
find * -type f -exec sed -i 's/\bie\b/i.e.,/g' {} \;
```
  • Loading branch information
yuvallanger committed Nov 1, 2014
commit 546466be30a03c630e575c62d9f206798260e31c
2 changes: 1 addition & 1 deletion doc/api/api_changes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2078,7 +2078,7 @@ Transformations
implementations, matplotlib.transforms.SeparableTransformation and
matplotlib.transforms.Affine. The SeparableTransformation is
constructed with the bounding box of the input (this determines the
rectangular coordinate system of the input, ie the x and y view
rectangular coordinate system of the input, i.e., the x and y view
limits), the bounding box of the display, and possibly nonlinear
transformations of x and y. The 2 most frequently used
transformations, data coordinates -> display and axes coordinates ->
Expand Down
2 changes: 1 addition & 1 deletion doc/faq/usage_faq.rst
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ others in web application servers to dynamically serve up graphs.

To support all of these use cases, matplotlib can target different
outputs, and each of these capabilities is called a backend; the
"frontend" is the user facing code, ie the plotting code, whereas the
"frontend" is the user facing code, i.e., the plotting code, whereas the
"backend" does all the hard work behind-the-scenes to make the figure.
There are two types of backends: user interface backends (for use in
pygtk, wxpython, tkinter, qt4, or macosx; also referred to as
Expand Down
2 changes: 1 addition & 1 deletion examples/pylab_examples/broken_barh.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""
Make a "broken" horizontal bar plot, ie one with gaps
Make a "broken" horizontal bar plot, i.e., one with gaps
"""
import matplotlib.pyplot as plt

Expand Down
6 changes: 3 additions & 3 deletions lib/matplotlib/axes/_axes.py
Original file line number Diff line number Diff line change
Expand Up @@ -2213,11 +2213,11 @@ def broken_barh(self, xranges, yrange, **kwargs):

%(BrokenBarHCollection)s

these can either be a single argument, ie::
these can either be a single argument, i.e.,::

facecolors = 'black'

or a sequence of arguments for the various bars, ie::
or a sequence of arguments for the various bars, i.e.,::

facecolors = ('black', 'red', 'green')

Expand Down Expand Up @@ -5420,7 +5420,7 @@ def hist(self, x, bins=10, range=None, normed=False, weights=None,
normed : boolean, optional, default: False
If `True`, the first element of the return tuple will
be the counts normalized to form a probability density, i.e.,
``n/(len(x)`dbin)``, ie the integral of the histogram will sum to
``n/(len(x)`dbin)``, i.e., the integral of the histogram will sum to
1. If *stacked* is also *True*, the sum of the histograms is
normalized to 1.

Expand Down
8 changes: 4 additions & 4 deletions lib/matplotlib/collections.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ class Collection(artist.Artist, cm.ScalarMappable):

The use of :class:`~matplotlib.cm.ScalarMappable` is optional. If
the :class:`~matplotlib.cm.ScalarMappable` matrix _A is not None
(ie a call to set_array has been made), at draw time a call to
(i.e., a call to set_array has been made), at draw time a call to
scalar mappable will be made to set the face colors.
"""
_offsets = np.array([], np.float_)
Expand Down Expand Up @@ -1030,7 +1030,7 @@ def __init__(self, segments, # Can be None.

The use of :class:`~matplotlib.cm.ScalarMappable` is optional.
If the :class:`~matplotlib.cm.ScalarMappable` array
:attr:`~matplotlib.cm.ScalarMappable._A` is not None (ie a call to
:attr:`~matplotlib.cm.ScalarMappable._A` is not None (i.e., a call to
:meth:`~matplotlib.cm.ScalarMappable.set_array` has been made), at
draw time a call to scalar mappable will be made to set the colors.
"""
Expand Down Expand Up @@ -1190,7 +1190,7 @@ def __init__(self,

The use of :class:`~matplotlib.cm.ScalarMappable` is optional.
If the :class:`~matplotlib.cm.ScalarMappable` array
:attr:`~matplotlib.cm.ScalarMappable._A` is not None (ie a call to
:attr:`~matplotlib.cm.ScalarMappable._A` is not None (i.e., a call to
:meth:`~matplotlib.cm.ScalarMappable.set_array` has been made), at
draw time a call to scalar mappable will be made to set the colors.

Expand Down Expand Up @@ -1517,7 +1517,7 @@ def __init__(self, patches, match_original=False, **kwargs):

The use of :class:`~matplotlib.cm.ScalarMappable` is optional.
If the :class:`~matplotlib.cm.ScalarMappable` matrix _A is not
None (ie a call to set_array has been made), at draw time a
None (i.e., a call to set_array has been made), at draw time a
call to scalar mappable will be made to set the face colors.
"""

Expand Down
2 changes: 1 addition & 1 deletion lib/matplotlib/mlab.py
Original file line number Diff line number Diff line change
Expand Up @@ -1677,7 +1677,7 @@ def __init__(self, a, standardize=True):
*Y* : a projected into PCA space


The factor loadings are in the Wt factor, ie the factor
The factor loadings are in the Wt factor, i.e., the factor
loadings for the 1st principal component are given by Wt[0].
This row is also the 1st eigenvector.

Expand Down
2 changes: 1 addition & 1 deletion lib/matplotlib/quiver.py
Original file line number Diff line number Diff line change
Expand Up @@ -915,7 +915,7 @@ def _find_tails(self, mag, rounding=True, half=5, full=10, flag=50):
'''
Find how many of each of the tail pieces is necessary. Flag
specifies the increment for a flag, barb for a full barb, and half for
half a barb. Mag should be the magnitude of a vector (ie. >= 0).
half a barb. Mag should be the magnitude of a vector (i.e., >= 0).

This returns a tuple of:

Expand Down
2 changes: 1 addition & 1 deletion lib/matplotlib/ticker.py
Original file line number Diff line number Diff line change
Expand Up @@ -993,7 +993,7 @@ class IndexLocator(Locator):
"""
Place a tick on every multiple of some base number of points
plotted, e.g., on every 5th point. It is assumed that you are doing
index plotting; ie the axis is 0, len(data). This is mainly
index plotting; i.e., the axis is 0, len(data). This is mainly
useful for x ticks.
"""
def __init__(self, base, offset):
Expand Down
2 changes: 1 addition & 1 deletion lib/mpl_toolkits/axes_grid1/axes_divider.py
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@ def __init__(self, fig, *args, **kwargs):

# total = rows*cols
# num -= 1 # convert from matlab to python indexing
# # ie num in range(0,total)
# # i.e., num in range(0,total)
# if num >= total:
# raise ValueError( 'Subplot number exceeds total subplots')
# self._rows = rows
Expand Down