Skip to content

Conversation

colinalexander
Copy link

Amends pandas.Series.between method to set different inclusive/exclusive endpoints.

inclusive : Boolean to indicate whether or not to include both the left
and right endpoints (True: a <= series <= b, False: a < series < b),
or an iterable boolean pair to set them separately, e.g
inclusive=(False, True) for a < series <= b.

inclusive : Boolean to indicate whether or not to include both the left
            and right endpoints (True: a <= series <= b, False: a < series < b),
            or an iterable boolean pair to set them separately, e.g
            inclusive=(False, True) for a < series <= b.
@jreback
Copy link
Contributor

jreback commented Feb 21, 2016

I guess. pls add some doc-string examples

use closed='left'|'right'|None like we do for DatetimeIndex

closed : string or None, default None
    Make the interval closed with respect to the given frequency to
    the 'left', 'right', or both sides (None)

@jreback
Copy link
Contributor

jreback commented Mar 23, 2016

up pls update for 0.18.1. pls also create a new issue to deprecate .between (and i'll mark for 0.19.0)

@jreback jreback added this to the No action milestone Apr 30, 2016
@jreback
Copy link
Contributor

jreback commented Apr 30, 2016

closed in favor of #13027

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

ENH: Series between inclusive end point bifurcation
2 participants