Skip to content

DOC: Put MultiIndex into the main API Reference #11893

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
Jan 11, 2016
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
28 changes: 28 additions & 0 deletions doc/source/api.rst
Original file line number Diff line number Diff line change
Expand Up @@ -572,6 +572,7 @@ strings and apply several methods to it. These can be accessed like
Series.dt
Index.str
CategoricalIndex.str
MultiIndex.str
DatetimeIndex.str
TimedeltaIndex.str

Expand Down Expand Up @@ -1396,6 +1397,33 @@ Categorical Components
CategoricalIndex.as_ordered
CategoricalIndex.as_unordered

.. _api.multiindex:

MultiIndex
----------

.. autosummary::
:toctree: generated/

MultiIndex

MultiIndex Components
~~~~~~~~~~~~~~~~~~~~~~

.. autosummary::
:toctree: generated/

MultiIndex.from_arrays
MultiIndex.from_tuples
MultiIndex.from_product
MultiIndex.set_levels
MultiIndex.set_labels
MultiIndex.to_hierarchical
MultiIndex.is_lexsorted
MultiIndex.droplevel
MultiIndex.swaplevel
MultiIndex.reorder_levels

.. _api.datetimeindex:

DatetimeIndex
Expand Down
3 changes: 1 addition & 2 deletions pandas/core/index.py
Original file line number Diff line number Diff line change
Expand Up @@ -4022,8 +4022,7 @@ def isin(self, values, level=None):
class MultiIndex(Index):

"""
Implements multi-level, a.k.a. hierarchical, index object for pandas
objects
A multi-level, or hierarchical, index object for pandas objects

Parameters
----------
Expand Down