-
-
Notifications
You must be signed in to change notification settings - Fork 18.6k
Issue 28518 multiindex interesection #28735
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
db15036
565f982
67af7ec
0fce75e
2530335
716820e
426768b
c094506
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 |
---|---|---|
|
@@ -365,6 +365,15 @@ def _verify_integrity(self, codes=None, levels=None): | |
"Level values must be unique: {values} on " | ||
"level {level}".format(values=[value for value in level], level=i) | ||
) | ||
if self.sortorder is not None: | ||
if self.sortorder > self._lexsort_depth(): | ||
raise ValueError( | ||
"Value for sortorder must be inferior or equal " | ||
"to actual lexsort_depth: " | ||
"sortorder {sortorder} with lexsort_depth {lexsort_depth}".format( | ||
sortorder=self.sortorder, lexsort_depth=self._lexsort_depth() | ||
) | ||
) | ||
|
||
codes = [ | ||
self._validate_codes(level, code) for level, code in zip(levels, codes) | ||
|
@@ -1783,16 +1792,15 @@ def is_lexsorted(self): | |
@cache_readonly | ||
def lexsort_depth(self): | ||
if self.sortorder is not None: | ||
if self.sortorder == 0: | ||
return self.nlevels | ||
else: | ||
return 0 | ||
return self.sortorder | ||
|
||
return self._lexsort_depth() | ||
|
||
def _lexsort_depth(self): | ||
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. right was wanting a 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. Ok sorry i did'nt get the "hint". |
||
int64_codes = [ensure_int64(level_codes) for level_codes in self.codes] | ||
for k in range(self.nlevels, 0, -1): | ||
if libalgos.is_lexsorted(int64_codes[:k]): | ||
return k | ||
|
||
return 0 | ||
|
||
def _sort_levels_monotonic(self): | ||
|
Uh oh!
There was an error while loading. Please reload this page.