Skip to content

Fixed typos #11504

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 1 commit into from
Nov 2, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion doc/source/advanced.rst
Original file line number Diff line number Diff line change
Expand Up @@ -686,7 +686,7 @@ values NOT in the categories, similarly to how you can reindex ANY pandas index.

.. warning::

Reshaping and Comparision operations on a ``CategoricalIndex`` must have the same categories
Reshaping and Comparison operations on a ``CategoricalIndex`` must have the same categories
or a ``TypeError`` will be raised.

.. code-block:: python
Expand Down
2 changes: 1 addition & 1 deletion doc/source/categorical.rst
Original file line number Diff line number Diff line change
Expand Up @@ -718,7 +718,7 @@ Old style constructor usage

In earlier versions than pandas 0.15, a `Categorical` could be constructed by passing in precomputed
`codes` (called then `labels`) instead of values with categories. The `codes` were interpreted as
pointers to the categories with `-1` as `NaN`. This type of constructor useage is replaced by
pointers to the categories with `-1` as `NaN`. This type of constructor usage is replaced by
the special constructor :func:`Categorical.from_codes`.

Unfortunately, in some special cases, using code which assumes the old style constructor usage
Expand Down
2 changes: 1 addition & 1 deletion doc/source/enhancingperf.rst
Original file line number Diff line number Diff line change
Expand Up @@ -699,7 +699,7 @@ ol' Python.
.. note::

Using the ``'python'`` engine is generally *not* useful, except for testing
other evaluation engines against it. You will acheive **no** performance
other evaluation engines against it. You will achieve **no** performance
benefits using :func:`~pandas.eval` with ``engine='python'`` and in fact may
incur a performance hit.

Expand Down
4 changes: 2 additions & 2 deletions doc/source/indexing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ of multi-axis indexing.
axis is of integer type. ``.ix`` is the most general and will
support any of the inputs in ``.loc`` and ``.iloc``. ``.ix`` also supports floating point
label schemes. ``.ix`` is exceptionally useful when dealing with mixed positional
and label based hierachical indexes.
and label based hierarchical indexes.

However, when an axis is integer based, ONLY
label based access and not positional access is supported.
Expand Down Expand Up @@ -1585,5 +1585,5 @@ This will **not** work at all, and so should be avoided
.. warning::

The chained assignment warnings / exceptions are aiming to inform the user of a possibly invalid
assignment. There may be false positives; situations where a chained assignment is inadvertantly
assignment. There may be false positives; situations where a chained assignment is inadvertently
reported.
2 changes: 1 addition & 1 deletion doc/source/io.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2006,7 +2006,7 @@ file, and the ``sheetname`` indicating which sheet to parse.
``ExcelFile`` class
+++++++++++++++++++

To faciliate working with multiple sheets from the same file, the ``ExcelFile``
To facilitate working with multiple sheets from the same file, the ``ExcelFile``
class can be used to wrap the file and can be be passed into ``read_excel``
There will be a performance benefit for reading multiple sheets as the file is
read into memory only once.
Expand Down
2 changes: 1 addition & 1 deletion doc/source/remote_data.rst
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ The first thing you need to do is to setup accesses to Google Analytics API. Fol
#. rename it to ``client_secrets.json``
#. move it to the ``pandas/io`` module directory

The first time you use the :func:`read_ga` funtion, a browser window will open to ask you to authentify to the Google API. Do proceed.
The first time you use the :func:`read_ga` function, a browser window will open to ask you to authentify to the Google API. Do proceed.

Using the Google Analytics API
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Expand Down
2 changes: 1 addition & 1 deletion doc/source/timedeltas.rst
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ Frequency Conversion
.. versionadded:: 0.13

Timedelta Series, ``TimedeltaIndex``, and ``Timedelta`` scalars can be converted to other 'frequencies' by dividing by another timedelta,
or by astyping to a specific timedelta type. These operations yield Series and propogate ``NaT`` -> ``nan``.
or by astyping to a specific timedelta type. These operations yield Series and propagate ``NaT`` -> ``nan``.
Note that division by the numpy scalar is true division, while astyping is equivalent of floor division.

.. ipython:: python
Expand Down
2 changes: 1 addition & 1 deletion doc/source/visualization.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1264,7 +1264,7 @@ with the ``subplots`` keyword:

plt.close('all')

Using Layout and Targetting Multiple Axes
Using Layout and Targeting Multiple Axes
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

The layout of subplots can be specified by ``layout`` keyword. It can accept
Expand Down