Skip to content

Commit d5f5881

Browse files
committed
DOC: Fixing a good number of spelling mistakes in 0.13 release notes
1 parent 2a14ed7 commit d5f5881

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

doc/source/v0.13.0.txt

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,10 @@ API changes
4949
index = index.set_levels([[1, 2, 3, 4], [1, 2, 4, 4]])
5050

5151
# similarly, for names, you can rename the object
52-
# but setting names is not deprecated.
52+
# but setting names is not deprecated
5353
index = index.set_names(["bob", "cranberry"])
5454

55-
# and all methods take an inplace kwarg - but returns None
55+
# and all methods take an inplace kwarg - but return None
5656
index.set_names(["bob", "cranberry"], inplace=True)
5757

5858
- **All** division with ``NDFrame`` - likes is now truedivision, regardless
@@ -80,7 +80,7 @@ API changes
8080
- ``__nonzero__`` for all NDFrame objects, will now raise a ``ValueError``, this reverts back to (:issue:`1073`, :issue:`4633`)
8181
behavior. See :ref:`gotchas<gotchas.truth>` for a more detailed discussion.
8282

83-
This prevents doing boolean comparision on *entire* pandas objects, which is inherently ambiguous. These all will raise a ``ValueError``.
83+
This prevents doing boolean comparison on *entire* pandas objects, which is inherently ambiguous. These all will raise a ``ValueError``.
8484

8585
.. code-block:: python
8686

@@ -106,7 +106,7 @@ API changes
106106
statistical mode(s) by axis/Series. (:issue:`5367`)
107107

108108
- Chained assignment will now by default warn if the user is assigning to a copy. This can be changed
109-
with he option ``mode.chained_assignment``, allowed options are ``raise/warn/None``. See :ref:`the docs<indexing.view_versus_copy>`.
109+
with the option ``mode.chained_assignment``, allowed options are ``raise/warn/None``. See :ref:`the docs<indexing.view_versus_copy>`.
110110

111111
.. ipython:: python
112112

@@ -158,7 +158,7 @@ Deprecated in 0.13.0
158158
of ``match`` will change to become analogous to ``contains``, which returns
159159
a boolean indexer. (Their
160160
distinction is strictness: ``match`` relies on ``re.match`` while
161-
``contains`` relies on ``re.serach``.) In this release, the deprecated
161+
``contains`` relies on ``re.search``.) In this release, the deprecated
162162
behavior is the default, but the new behavior is available through the
163163
keyword argument ``as_indexer=True``.
164164

@@ -310,8 +310,8 @@ HDFStore API Changes
310310
os.remove(path)
311311

312312
- the ``format`` keyword now replaces the ``table`` keyword; allowed values are ``fixed(f)`` or ``table(t)``
313-
the same defaults as prior < 0.13.0 remain, e.g. ``put`` implies ``fixed`` format
314-
and ``append`` imples ``table`` format. This default format can be set as an option by setting ``io.hdf.default_format``.
313+
the same defaults as prior < 0.13.0 remain, e.g. ``put`` implies ``fixed`` format and ``append`` implies
314+
``table`` format. This default format can be set as an option by setting ``io.hdf.default_format``.
315315

316316
.. ipython:: python
317317

@@ -443,7 +443,7 @@ Enhancements
443443
td * -1
444444
td * Series([1,2,3,4])
445445

446-
Absolute ``DateOffset`` objects can act equivalenty to ``timedeltas``
446+
Absolute ``DateOffset`` objects can act equivalently to ``timedeltas``
447447

448448
.. ipython:: python
449449

@@ -467,8 +467,8 @@ Enhancements
467467

468468
- ``plot(kind='kde')`` now accepts the optional parameters ``bw_method`` and
469469
``ind``, passed to scipy.stats.gaussian_kde() (for scipy >= 0.11.0) to set
470-
the bandwidth, and to gkde.evaluate() to specify the indicies at which it
471-
is evaluated, respecttively. See scipy docs. (:issue:`4298`)
470+
the bandwidth, and to gkde.evaluate() to specify the indices at which it
471+
is evaluated, respectively. See scipy docs. (:issue:`4298`)
472472

473473
- DataFrame constructor now accepts a numpy masked record array (:issue:`3478`)
474474

@@ -752,7 +752,7 @@ Experimental
752752
df3 = pandas.concat([df2.min(), df2.mean(), df2.max()],
753753
axis=1,keys=["Min Tem", "Mean Temp", "Max Temp"])
754754

755-
The resulting dataframe is::
755+
The resulting DataFrame is::
756756

757757
> df3
758758
Min Tem Mean Temp Max Temp
@@ -842,7 +842,7 @@ to unify methods and behaviors. Series formerly subclassed directly from
842842

843843
- ``swapaxes`` on a ``Panel`` with the same axes specified now return a copy
844844
- support attribute access for setting
845-
- filter supports same api as original ``DataFrame`` filter
845+
- filter supports the same API as the original ``DataFrame`` filter
846846

847847
- Reindex called with no arguments will now return a copy of the input object
848848

@@ -870,11 +870,11 @@ to unify methods and behaviors. Series formerly subclassed directly from
870870
- enable setitem on ``SparseSeries`` for boolean/integer/slices
871871
- ``SparsePanels`` implementation is unchanged (e.g. not using BlockManager, needs work)
872872

873-
- added ``ftypes`` method to Series/DataFame, similar to ``dtypes``, but indicates
873+
- added ``ftypes`` method to Series/DataFrame, similar to ``dtypes``, but indicates
874874
if the underlying is sparse/dense (as well as the dtype)
875-
- All ``NDFrame`` objects now have a ``_prop_attributes``, which can be used to indcated various
876-
values to propogate to a new object from an existing (e.g. name in ``Series`` will follow
877-
more automatically now)
875+
- All ``NDFrame`` objects now have a ``_prop_attributes``, which can be used to specify various
876+
values to propagate to new objects from an existing one (e.g. ``name`` in ``Series`` will
877+
follow more automatically now)
878878
- Internal type checking is now done via a suite of generated classes, allowing ``isinstance(value, klass)``
879879
without having to directly import the klass, courtesy of @jtratner
880880
- Bug in Series update where the parent frame is not updating its cache based on
@@ -886,7 +886,7 @@ to unify methods and behaviors. Series formerly subclassed directly from
886886
- Refactor ``rename`` methods to core/generic.py; fixes ``Series.rename`` for (:issue:`4605`), and adds ``rename``
887887
with the same signature for ``Panel``
888888
- Refactor ``clip`` methods to core/generic.py (:issue:`4798`)
889-
- Refactor of ``_get_numeric_data/_get_bool_data`` to core/generic.py, allowing Series/Panel functionaility
889+
- Refactor of ``_get_numeric_data/_get_bool_data`` to core/generic.py, allowing Series/Panel functionality
890890
- ``Series`` (for index) / ``Panel`` (for items) now allow attribute access to its elements (:issue:`1903`)
891891

892892
.. ipython:: python

0 commit comments

Comments
 (0)