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

Update Drop Functionality #18

Open
Ethan-DeBandi99 opened this issue Mar 4, 2022 · 2 comments
Open

Update Drop Functionality #18

Ethan-DeBandi99 opened this issue Mar 4, 2022 · 2 comments

Comments

@Ethan-DeBandi99
Copy link
Contributor

PR #1177 in the arkouda repo updates the functionality of ak.DataFrame.drop() to include the ability to drop columns.

The DataFrame Demo notebooks should be updated to reflect these changes once PR #1177 is merged.

Link to PR for convience:
Bears-R-Us/arkouda#1177

@egelberg
Copy link

@Ethan-DeBandi99 or @pierce314159 FYI that this is still an issue within the DataFrame Demo notebook, under the "Drop Functionality" section. Modifying
df.drop('userName')
to
df.drop('userName', axis=1)
fixed it for me

@egelberg
Copy link

Scratch that, it's not an inplace drop, had to modify it to
df = df.drop('userName', axis=1)
to get it to work

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants