-
Notifications
You must be signed in to change notification settings - Fork 902
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This PR adds support for pos_explode in cuDF. It is very similar to explode, but includes a column with the index of the array that was exploded on each row. ``` a b [0, 1] 100 [2] 200 [3, 4, 5] 300 ``` exploded on column a would result in ``` a pos b 0 0 100 1 1 100 2 0 200 3 0 300 4 1 300 5 2 300 ``` partially fixes #6151 Authors: - Mike Wilson (@hyperbolic2346) Approvers: - David (@davidwendt) - Jake Hemstad (@jrhemstad) URL: #7376
- Loading branch information
1 parent
7526be7
commit 9ae85ae
Showing
4 changed files
with
210 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.