Skip to content

DOC: remove Categorical.unique refs from doc-strings #15964

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
Apr 10, 2017
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
8 changes: 0 additions & 8 deletions doc/source/api.rst
Original file line number Diff line number Diff line change
Expand Up @@ -660,14 +660,6 @@ the Categorical back to a numpy array, so categories and order information is no

Categorical.__array__

Categorical methods

.. autosummary::
:toctree: generated/

Categorical.unique
Categorical.value_counts

Plotting
~~~~~~~~

Expand Down
5 changes: 3 additions & 2 deletions pandas/core/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -871,8 +871,9 @@ def value_counts(self, normalize=False, sort=True, ascending=False,

See Also
--------
pandas.unique
pandas.Categorical.unique
unique
Index.unique
Series.unique
""")

@Appender(_shared_docs['unique'] % _indexops_doc_kwargs)
Expand Down