-
Notifications
You must be signed in to change notification settings - Fork 902
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
Consolidate and improve reset_index
#9750
Consolidate and improve reset_index
#9750
Conversation
…vement/reset_idx_mode_set_index
Co-authored-by: Vyas Ramasubramani <[email protected]>
…n test; and fix a bug from github commit
Co-authored-by: Vyas Ramasubramani <[email protected]>
@isVoid at a glance, my best guess for why tests are failing now is this change on 5b81aa3. Specifically, the new |
…ent/reset_idx_mode_set_index
…ent/reset_idx_mode_set_index
Codecov Report
@@ Coverage Diff @@
## branch-22.02 #9750 +/- ##
================================================
- Coverage 10.49% 10.41% -0.08%
================================================
Files 119 119
Lines 20305 20486 +181
================================================
+ Hits 2130 2134 +4
- Misses 18175 18352 +177
Continue to review full report at Codecov.
|
…ent/reset_idx_mode_set_index
@gpucibot merge |
rerun tests |
@gpucibot merge |
Partial of #9038
This is a rewrite of
reset_index
to share some common logics betweenSeries
andDataFrame
. It extends it's capability to handlelevel
argument for multi-level index,col_level
andcol_fill
for multi-level column name support. And addsname
argument support for series api.