Skip to content

Spelling fixes #11837

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
Dec 14, 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 @@ -525,7 +525,7 @@ they have a MultiIndex:

df.T.sort_index(level=1, axis=1)

The ``MultiIndex`` object has code to **explicity check the sort depth**. Thus,
The ``MultiIndex`` object has code to **explicitly check the sort depth**. Thus,
if you try to index at a depth at which the index is not sorted, it will raise
an exception. Here is a concrete example to illustrate this:

Expand Down
2 changes: 1 addition & 1 deletion doc/source/api.rst
Original file line number Diff line number Diff line change
Expand Up @@ -552,7 +552,7 @@ These can be accessed like ``Series.dt.<property>``.
String handling
~~~~~~~~~~~~~~~
``Series.str`` can be used to access the values of the series as
strings and apply several methods to it. These can be acccessed like
strings and apply several methods to it. These can be accessed like
``Series.str.<function/property>``.

.. autosummary::
Expand Down
2 changes: 1 addition & 1 deletion doc/source/basics.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1097,7 +1097,7 @@ Note that the same result could have been achieved using
ts2.reindex(ts.index).fillna(method='ffill')

:meth:`~Series.reindex` will raise a ValueError if the index is not monotonic
increasing or descreasing. :meth:`~Series.fillna` and :meth:`~Series.interpolate`
increasing or decreasing. :meth:`~Series.fillna` and :meth:`~Series.interpolate`
will not make any checks on the order of the index.

.. _basics.limits_on_reindex_fill:
Expand Down
4 changes: 2 additions & 2 deletions doc/source/categorical.rst
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ It's also possible to pass in the categories in a specific order:

.. note::

New categorical data are NOT automatically ordered. You must explicity pass ``ordered=True`` to
New categorical data are NOT automatically ordered. You must explicitly pass ``ordered=True`` to
indicate an ordered ``Categorical``.


Expand Down Expand Up @@ -342,7 +342,7 @@ necessarily make the sort order the same as the categories order.
Multi Column Sorting
~~~~~~~~~~~~~~~~~~~~

A categorical dtyped column will partcipate in a multi-column sort in a similar manner to other columns.
A categorical dtyped column will participate in a multi-column sort in a similar manner to other columns.
The ordering of the categorical is determined by the ``categories`` of that column.

.. ipython:: python
Expand Down
6 changes: 3 additions & 3 deletions doc/source/comparison_with_sas.rst
Original file line number Diff line number Diff line change
Expand Up @@ -271,15 +271,15 @@ date/datetime columns.
date2 = mdy(2, 15, 2015);
date1_year = year(date1);
date2_month = month(date2);
* shift date to begninning of next interval;
* shift date to beginning of next interval;
date1_next = intnx('MONTH', date1, 1);
* count intervals between dates;
months_between = intck('MONTH', date1, date2);
run;

The equivalent pandas operations are shown below. In addition to these
functions pandas supports other Time Series features
not available in Base SAS (such as resampling and and custom offets) -
not available in Base SAS (such as resampling and and custom offsets) -
see the :ref:`timeseries documentation<timeseries>` for more details.

.. ipython:: python
Expand Down Expand Up @@ -350,7 +350,7 @@ Sorting in SAS is accomplished via ``PROC SORT``
run;

pandas objects have a :meth:`~DataFrame.sort_values` method, which
takes a list of columnns to sort by.
takes a list of columns to sort by.

.. ipython:: python

Expand Down
2 changes: 1 addition & 1 deletion doc/source/cookbook.rst
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ The :ref:`multindexing <advanced.hierarchical>` docs.

# As Labelled Index
df = df.set_index('row');df
# With Heirarchical Columns
# With Hierarchical Columns
df.columns = pd.MultiIndex.from_tuples([tuple(c.split('_')) for c in df.columns]);df
# Now stack & Reset
df = df.stack(0).reset_index(1);df
Expand Down
2 changes: 1 addition & 1 deletion doc/source/dsintro.rst
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ Series

.. warning::

In 0.13.0 ``Series`` has internaly been refactored to no longer sub-class ``ndarray``
In 0.13.0 ``Series`` has internally been refactored to no longer sub-class ``ndarray``
but instead subclass ``NDFrame``, similarly to the rest of the pandas containers. This should be
a transparent change with only very limited API implications (See the :ref:`Internal Refactoring<whatsnew_0130.refactoring>`)

Expand Down
2 changes: 1 addition & 1 deletion doc/source/ecosystem.rst
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ or multi-indexed DataFrames.
fredapi is a Python interface to the `Federal Reserve Economic Data (FRED) <http://research.stlouisfed.org/fred2/>`__
provided by the Federal Reserve Bank of St. Louis. It works with both the FRED database and ALFRED database that
contains point-in-time data (i.e. historic data revisions). fredapi provides a wrapper in python to the FRED
HTTP API, and also provides several conveninent methods for parsing and analyzing point-in-time data from ALFRED.
HTTP API, and also provides several convenient methods for parsing and analyzing point-in-time data from ALFRED.
fredapi makes use of pandas and returns data in a Series or DataFrame. This module requires a FRED API key that
you can obtain for free on the FRED website.

Expand Down
2 changes: 1 addition & 1 deletion doc/source/enhancingperf.rst
Original file line number Diff line number Diff line change
Expand Up @@ -745,7 +745,7 @@ Technical Minutia Regarding Expression Evaluation

Expressions that would result in an object dtype or involve datetime operations
(because of ``NaT``) must be evaluated in Python space. The main reason for
this behavior is to maintain backwards compatbility with versions of numpy <
this behavior is to maintain backwards compatibility with versions of numpy <
1.7. In those versions of ``numpy`` a call to ``ndarray.astype(str)`` will
truncate any strings that are more than 60 characters in length. Second, we
can't pass ``object`` arrays to ``numexpr`` thus string comparisons must be
Expand Down
2 changes: 1 addition & 1 deletion doc/source/groupby.rst
Original file line number Diff line number Diff line change
Expand Up @@ -649,7 +649,7 @@ For dataframes with multiple columns, filters should explicitly specify a column
.. note::

Some functions when applied to a groupby object will act as a **filter** on the input, returning
a reduced shape of the original (and potentitally eliminating groups), but with the index unchanged.
a reduced shape of the original (and potentially eliminating groups), but with the index unchanged.
Passing ``as_index=False`` will not affect these transformation methods.

For example: ``head, tail``.
Expand Down
2 changes: 1 addition & 1 deletion doc/source/indexing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ lower-dimensional slices. Thus,

Series; ``series[label]``; scalar value
DataFrame; ``frame[colname]``; ``Series`` corresponding to colname
Panel; ``panel[itemname]``; ``DataFrame`` corresponing to the itemname
Panel; ``panel[itemname]``; ``DataFrame`` corresponding to the itemname

Here we construct a simple time series data set to use for illustrating the
indexing functionality:
Expand Down
4 changes: 2 additions & 2 deletions doc/source/io.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3065,7 +3065,7 @@ indexed dimension as the ``where``.
i = store.root.df.table.cols.index.index
i.optlevel, i.kind

Ofentimes when appending large amounts of data to a store, it is useful to turn off index creation for each append, then recreate at the end.
Oftentimes when appending large amounts of data to a store, it is useful to turn off index creation for each append, then recreate at the end.

.. ipython:: python

Expand Down Expand Up @@ -4415,7 +4415,7 @@ whether imported ``Categorical`` variables are ordered.

*Stata* supports partially labeled series. These series have value labels for
some but not all data values. Importing a partially labeled series will produce
a ``Categorial`` with string categories for the values that are labeled and
a ``Categorical`` with string categories for the values that are labeled and
numeric categories for values with no label.

.. _io.other:
Expand Down
2 changes: 1 addition & 1 deletion doc/source/merging.rst
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ functionality below.
.. note::
It is worth noting however, that ``concat`` (and therefore ``append``) makes
a full copy of the data, and that constantly reusing this function can
create a signifcant performance hit. If you need to use the operation over
create a significant performance hit. If you need to use the operation over
several datasets, use a list comprehension.

::
Expand Down
2 changes: 1 addition & 1 deletion doc/source/timedeltas.rst
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ Similarly to other of the datetime-like indices, ``DatetimeIndex`` and ``PeriodI
index=timedelta_range('1 days', periods=100, freq='h'))
s

Selections work similary, with coercion on string-likes and slices:
Selections work similarly, with coercion on string-likes and slices:

.. ipython:: python

Expand Down
6 changes: 3 additions & 3 deletions doc/source/timeseries.rst
Original file line number Diff line number Diff line change
Expand Up @@ -672,7 +672,7 @@ used exactly like a ``Timedelta`` - see the

Note that some offsets (such as ``BQuarterEnd``) do not have a
vectorized implementation. They can still be used but may
calculate signficantly slower and will raise a ``PerformanceWarning``
calculate significantly slower and will raise a ``PerformanceWarning``

.. ipython:: python
:okwarning:
Expand Down Expand Up @@ -885,7 +885,7 @@ frequencies. We will refer to these aliases as *offset aliases*
"H", "hourly frequency"
"T, min", "minutely frequency"
"S", "secondly frequency"
"L, ms", "milliseonds"
"L, ms", "milliseconds"
"U, us", "microseconds"
"N", "nanoseconds"

Expand Down Expand Up @@ -1374,7 +1374,7 @@ frequency. Arithmetic is not allowed between ``Period`` with different ``freq``
p == Period('2012-01', freq='3M')


If ``Period`` freq is daily or higher (``D``, ``H``, ``T``, ``S``, ``L``, ``U``, ``N``), ``offsets`` and ``timedelta``-like can be added if the result can have the same freq. Otherise, ``ValueError`` will be raised.
If ``Period`` freq is daily or higher (``D``, ``H``, ``T``, ``S``, ``L``, ``U``, ``N``), ``offsets`` and ``timedelta``-like can be added if the result can have the same freq. Otherwise, ``ValueError`` will be raised.

.. 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 @@ -466,7 +466,7 @@ When ``subplots=False`` / ``by`` is ``None``:
This is the default of ``boxplot`` in historical reason.
Note that ``plot(kind='box')`` returns ``Axes`` as default as the same as other plots.
* if ``return_type`` is ``'axes'``, a :class:`matplotlib Axes <matplotlib.axes.Axes>` containing the boxplot is returned.
* if ``return_type`` is ``'both'`` a namedtuple containging the :class:`matplotlib Axes <matplotlib.axes.Axes>`
* if ``return_type`` is ``'both'`` a namedtuple containing the :class:`matplotlib Axes <matplotlib.axes.Axes>`
and :class:`matplotlib Lines <matplotlib.lines.Line2D>` is returned

When ``subplots=True`` / ``by`` is some column of the DataFrame:
Expand Down