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

[FEA] Implement division on DataFrame objects #900

Closed
mrocklin opened this issue Feb 8, 2019 · 5 comments
Closed

[FEA] Implement division on DataFrame objects #900

mrocklin opened this issue Feb 8, 2019 · 5 comments
Labels
dask Dask issue feature request New feature or request Needs Triage Need team to review and classify

Comments

@mrocklin
Copy link
Collaborator

mrocklin commented Feb 8, 2019

import cudf
df = cudf.DataFrame({'x': [1, 2, 3]})
df / df
---------------------------------------------------------------------------
TypeError                                 Traceback (most recent call last)
<ipython-input-3-28e3f97d0440> in <module>()
----> 1 df / df

TypeError: unsupported operand type(s) for /: 'DataFrame' and 'DataFrame'

I believe that there is already another issue for this, but I thought I'd repost this particular operation in case it's easier to implement quickly. This is useful for groupby aggregations with dask dataframe.

@mrocklin mrocklin added feature request New feature or request Needs Triage Need team to review and classify dask Dask issue labels Feb 8, 2019
@mrocklin mrocklin added this to Issue-Needs prioritizing in v0.6 Release via automation Feb 8, 2019
@mrocklin
Copy link
Collaborator Author

mrocklin commented Feb 8, 2019

cc @thomcom @kkraus14

@thomcom
Copy link
Contributor

thomcom commented Feb 8, 2019

I'll work on this this morning.

@thomcom
Copy link
Contributor

thomcom commented Feb 8, 2019

Next you're going to want series division into dataframe, and vice/versa. :D

@mrocklin
Copy link
Collaborator Author

mrocklin commented Feb 8, 2019 via email

@thomcom
Copy link
Contributor

thomcom commented Feb 8, 2019

Doing that now. Better get some more coffee.

@mrocklin mrocklin moved this from Issue-Needs prioritizing to Issue-P0 in v0.6 Release Feb 11, 2019
v0.6 Release automation moved this from Issue-P0 to Done Feb 12, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dask Dask issue feature request New feature or request Needs Triage Need team to review and classify
Projects
No open projects
v0.6 Release
  
Done
Development

No branches or pull requests

2 participants