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

cumsum not checking dtypes wrong #228

Closed
williamma12 opened this issue Oct 29, 2018 · 1 comment
Closed

cumsum not checking dtypes wrong #228

williamma12 opened this issue Oct 29, 2018 · 1 comment
Assignees
Labels
bug 🦗 Something isn't working

Comments

@williamma12
Copy link
Collaborator

Describe the problem

cumsum is not allowing summing over columns of objects and TimeStamps or summing over rows of TimeStamps or numeric types

Source code / logs

import modin.pandas as pd

data = {
    "col3": [1, 2, 3, 4],
    "col4": [4, 5, 6, 7],
    "col1": [8.0, 9.4, 10.1, 11.3],
    "col2": [
    np.timedelta64(1, "M"),
    np.timedelta64(2, "D"),
    np.timedelta64(3, "Y"),
    np.timedelta64(20, "D"),
]}

pd.DataFrame(data).cumsum()
@williamma12 williamma12 added the bug 🦗 Something isn't working label Oct 29, 2018
@williamma12 williamma12 self-assigned this Oct 29, 2018
@devin-petersohn
Copy link
Collaborator

Closing this. Feel free to reopen if the discussion should continue or if issue was not resolved.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug 🦗 Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants