Skip to content

Commit 3b9ef13

Browse files
committed
ie, to i.e.,
Used: ```bash find * -type f -exec sed -i 's/\bie,/i.e.,/g' {} \; ```
1 parent ef80b70 commit 3b9ef13

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

doc/users/pyplot_tutorial.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ numcols, fignum`` where ``fignum`` ranges from 1 to
170170
``numrows*numcols``. The commas in the ``subplot`` command are
171171
optional if ``numrows*numcols<10``. So ``subplot(211)`` is identical
172172
to ``subplot(2,1,1)``. You can create an arbitrary number of subplots
173-
and axes. If you want to place an axes manually, ie, not on a
173+
and axes. If you want to place an axes manually, i.e., not on a
174174
rectangular grid, use the :func:`~matplotlib.pyplot.axes` command,
175175
which allows you to specify the location as ``axes([left, bottom,
176176
width, height])`` where all values are in fractional (0 to 1)

lib/matplotlib/afm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -446,7 +446,7 @@ def get_str_bbox(self, s):
446446

447447
def get_name_char(self, c, isord=False):
448448
"""
449-
Get the name of the character, ie, ';' is 'semicolon'
449+
Get the name of the character, i.e., ';' is 'semicolon'
450450
"""
451451
if not isord:
452452
c = ord(c)

lib/matplotlib/mlab.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1622,7 +1622,7 @@ def prepca(P, frac=0):
16221622
16231623
- *Pcomponents* : a (numVars, numObs) array
16241624
1625-
- *Trans* : the weights matrix, ie, *Pcomponents* = *Trans* *
1625+
- *Trans* : the weights matrix, i.e., *Pcomponents* = *Trans* *
16261626
*P*
16271627
16281628
- *fracVar* : the fraction of the variance accounted for by each

lib/matplotlib/tests/test_mlab.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2906,7 +2906,7 @@ def test_evaluate_diff_dim(self):
29062906
np.testing.assert_array_almost_equal(y, y_expected, 7)
29072907

29082908
def test_evaluate_inv_dim(self):
2909-
""" Invert the dimensions. ie, Give the dataset a dimension of
2909+
""" Invert the dimensions. i.e., Give the dataset a dimension of
29102910
1 [3,2,4], and the points will have a dimension of 3 [[3],[2],[4]].
29112911
ValueError should be raised"""
29122912
np.random.seed(8765678)

lib/matplotlib/text.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1703,7 +1703,7 @@ def __init__(self, s, xy,
17031703
annotated. If *d* is the distance between the text and
17041704
annotated point, shrink will shorten the arrow so the tip
17051705
and base are shink percent of the distance *d* away from
1706-
the endpoints. ie, ``shrink=0.05 is 5%%``
1706+
the endpoints. i.e., ``shrink=0.05 is 5%%``
17071707
? any key for :class:`matplotlib.patches.polygon`
17081708
========= ===========================================================
17091709

0 commit comments

Comments
 (0)