8000 DOC: update the Series.isin docstring by DaanVanHauwermeiren · Pull Request #20175 · pandas-dev/pandas · GitHub
[go: up one dir, main page]

Skip to content

DOC: update the Series.isin docstring #20175

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 7 commits into from
Mar 10, 2018
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
remove redundant double quotations around Series
  • Loading branch information
DaanVanHauwermeiren committed Mar 10, 2018
commit 6fa3bc9edcdbe32b169c3364b125c9e35e8f4997
6 changes: 3 additions & 3 deletions pandas/core/series.py
Original file line number Diff line number Diff line change
Expand Up @@ -2745,10 +2745,10 @@ def _take(self, indices, axis=0, convert=True, is_copy=False):

def isin(self, values):
"""
Check whether ``values`` are contained in ``Series``.
Check whether ``values`` are contained in Series.

Return a boolean ``Series`` showing whether each element in the
``Series`` is exactly contained in the passed sequence of ``values``.
Return a boolean Series showing whether each element in the Series
is exactly contained in the passed sequence of ``values``.

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