Skip to content
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

[WIP] Implement dataframe.dropna() #1126

Closed

Conversation

dillon-cullinan
Copy link
Contributor

Closes #911

@kkraus14 kkraus14 added 2 - In Progress Currently a work in progress cuDF (Python) Affects Python cuDF API. labels Mar 7, 2019
def elem_and_or(a, b, operation)
assert a.size == b.size #Different length objects
out = rmm.device_array_like(a)
if operation == "and":
Copy link
Collaborator

@kkraus14 kkraus14 Mar 7, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Need to add a check for if out.size > 0 here

assert a.size == b.size #Different length objects
out = rmm.device_array_like(a)
if operation == "and":
gpu_elem_and.forall(a.size)(a, b, out)
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These should be on out.size for consistency

@randerzander randerzander added this to PR-WIP in v0.6 Release via automation Mar 7, 2019
@randerzander randerzander added this to PR-WIP in v0.7 Release via automation Mar 7, 2019
@randerzander randerzander removed this from PR-WIP in v0.6 Release Mar 7, 2019
@fondaing fondaing changed the base branch from branch-0.6 to branch-0.7 March 7, 2019 21:28
@beckernick
Copy link
Member

@kkraus14 @dillon-cullinan , whats the current status of the PR?

@fondaing fondaing added this to PR-WIP in v0.8 Release via automation May 2, 2019
@fondaing fondaing removed this from PR-WIP in v0.7 Release May 2, 2019
@harrism
Copy link
Member

harrism commented Jun 18, 2019

I will be adding the libcudf functionality for multicolumn (DataFrame) drop_nulls() in 0.9 in #1744 . Should this PR move to 0.9 with it?

@kkraus14 kkraus14 added this to PR-WIP in v0.9 Release via automation Jun 20, 2019
@kkraus14 kkraus14 removed this from PR-WIP in v0.8 Release Jun 20, 2019
v0.9 Release automation moved this from PR-WIP to Done Jun 24, 2019
@dillon-cullinan dillon-cullinan deleted the 911-dropna branch March 30, 2021 07:12
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
2 - In Progress Currently a work in progress cuDF (Python) Affects Python cuDF API.
Projects
No open projects
v0.9 Release
  
Done
Development

Successfully merging this pull request may close these issues.

None yet

4 participants