-
-
Notifications
You must be signed in to change notification settings - Fork 18.5k
Minor Bug: Boolean masking not working for Index objects #17131
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
Labels
Indexing
Related to indexing on series/frames, not to indexes themselves
Regression
Functionality that used to work in a prior pandas version
Milestone
Comments
hmm this is a regression. @jolespin if you'd step thru would be great! |
naor2013
added a commit
to naor2013/pandas
that referenced
this issue
Aug 10, 2017
jreback
added a commit
to jreback/pandas
that referenced
this issue
Oct 2, 2017
jreback
added a commit
that referenced
this issue
Oct 2, 2017
jreback
added a commit
that referenced
this issue
Oct 2, 2017
ghost
pushed a commit
to reef-technologies/pandas
that referenced
this issue
Oct 2, 2017
* 'master' of github.com:pandas-dev/pandas: (188 commits) Separate out _convert_datetime_to_tsobject (pandas-dev#17715) DOC: remove whatsnew note for xref pandas-dev#17131 BUG: Regression in .loc accepting a boolean Index as an indexer (pandas-dev#17738) DEPR: Deprecate cdate_range and merge into bdate_range (pandas-dev#17691) CLN: replace %s syntax with .format in pandas.core: categorical, common, config, config_init (pandas-dev#17735) Fixed the memory usage explanation of categorical in gotchas from O(nm) to O(n+m) (pandas-dev#17736) TST: add backward compat for offset testing for pickles (pandas-dev#17733) remove unused time conversion funcs (pandas-dev#17711) DEPR: Deprecate convert parameter in take (pandas-dev#17352) BUG:Time Grouper bug fix when applied for list groupers (pandas-dev#17587) BUG: Fix some PeriodIndex resampling issues (pandas-dev#16153) BUG: Fix unexpected sort in groupby (pandas-dev#17621) DOC: Fixed typo in documentation for 'pandas.DataFrame.replace' (pandas-dev#17731) BUG: Fix series rename called with str altering name rather index (GH17407) (pandas-dev#17654) DOC: Add examples for MultiIndex.get_locs + cleanups (pandas-dev#17675) Doc improvements for IntervalIndex and Interval (pandas-dev#17714) BUG: DataFrame sort_values and multiple "by" columns fails to order NaT correctly Last of the timezones funcs (pandas-dev#17669) Add missing file to _pyxfiles, delete commented-out (pandas-dev#17712) update imports of DateParseError, remove unused imports from tslib (pandas-dev#17713) ...
alanbato
pushed a commit
to alanbato/pandas
that referenced
this issue
Nov 10, 2017
alanbato
pushed a commit
to alanbato/pandas
that referenced
this issue
Nov 10, 2017
No-Stream
pushed a commit
to No-Stream/pandas
that referenced
this issue
Nov 28, 2017
No-Stream
pushed a commit
to No-Stream/pandas
that referenced
this issue
Nov 28, 2017
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
Indexing
Related to indexing on series/frames, not to indexes themselves
Regression
Functionality that used to work in a prior pandas version
To get the boolean mask to work, you must use the
np.array
representation instead of thepd.Index
itself. In previous releases, this could be done. Referenced here: #17129 (comment)THIS DOESN"T WORK
BUT THIS WORKS
The text was updated successfully, but these errors were encountered: