-
-
Notifications
You must be signed in to change notification settings - Fork 19.1k
Open
Labels
EnhancementNeeds TriageIssue that has not been reviewed by a pandas team memberIssue that has not been reviewed by a pandas team member
Description
Feature Type
-
Adding new functionality to pandas
-
Changing existing functionality in pandas
-
Removing existing functionality in pandas
Problem Description
I wish iloc and loc directly could allow multislicing that is not contiguous, like when using iloc combined with np.r_
Feature Description
Allow lists to be parameters in iloc and loc, that today can be performed with np.r_
Like df.iloc[[1, 2:5, 8, -1], [:3, 5:7, -2:]]
Alternative Solutions
Df.iloc[np.r_[:2, 5:8], np.r_[3, 4:6, -2]]
Additional Context
No response
Metadata
Metadata
Assignees
Labels
EnhancementNeeds TriageIssue that has not been reviewed by a pandas team memberIssue that has not been reviewed by a pandas team member