-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
DEPR: MultiIndex.to_hierarchical #21613
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
Changes from 4 commits
79d19e4
007f26f
cd78d93
8727f95
7aa3bbf
2e5a6da
3eedafc
1d2eb26
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -948,10 +948,13 @@ def to_frame(self, filter_observations=True): | |
data[item] = self[item].values.ravel()[selector] | ||
|
||
def construct_multi_parts(idx, n_repeat, n_shuffle=1): | ||
axis_idx = idx.to_hierarchical(n_repeat, n_shuffle) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. can you provide a 1-liner what this method is doing |
||
labels = [x[selector] for x in axis_idx.labels] | ||
levels = axis_idx.levels | ||
names = axis_idx.names | ||
labels = [np.repeat(x, n_repeat) for x in idx.labels] | ||
# Assumes that each label is divisible by n_shuffle | ||
labels = [x.reshape(n_shuffle, -1).ravel(order='F') | ||
for x in labels] | ||
labels = [x[selector] for x in labels] | ||
levels = idx.levels | ||
names = idx.names | ||
return labels, levels, names | ||
|
||
def construct_index_parts(idx, major=True): | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1704,6 +1704,11 @@ def test_to_hierarchical(self): | |
tm.assert_index_equal(result, expected) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. you need to catch all uses of to_hierarchical (or you get the warnings) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Thanks - not sure if I understand. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
assert result.names == index.names | ||
|
||
# GH21613 | ||
# .to_hierarchical will be deprecated | ||
with tm.assert_produces_warning(FutureWarning): | ||
result = index.to_hierarchical(2) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. you don't need the result = There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Thanks - yes had missed it - will update together along with other comments |
||
|
||
def test_bounds(self): | ||
self.index._bounds | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
to_hierarchical is listed elsewhere in this file in a doc-string
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks - it is mentioned as a part of enumeration of methods of
MultiIndex
- should it be removed?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks - updated for all of the latest review comments