Giter Site home page Giter Site logo

Comments (6)

pmhatre1 avatar pmhatre1 commented on May 28, 2024

The code seems to be taking an single list instead of numpy array below
Screenshot 2024-03-22 at 12 30 21 AM

from pandas.

pmhatre1 avatar pmhatre1 commented on May 28, 2024

original_list = func(y)
result = [[x] for x in original_list]
result = np.array(result)

This might help?

from pandas.

Aloqeely avatar Aloqeely commented on May 28, 2024

The problem exists in core\array_algos\datetimelike_accumulations.py, _cum_func:

result = func(y)
result[mask] = iNaT

Essentially, what this is doing is performing func (np.cumsum in this case) on your whole data array, and by default np.cumsum computes the sum over a flattened array and returns it, but then when masking the NA values, it is expecting that the data array was in it's original shape and not flattened.

To fix this, you have to pass axis as 0 to func (again, np.cumsum in this case), so that it performs the cumsum along the given axis and not over the whole flattened array (it's the only func with axis=None by default, unlike cummin and cummax which have axis=0 by default and work properly)

I'd like to try fixing this issue, but it would be helpful to understand why the developers chose not to pass axis to func and instead handle its behavior internally.

And to explain why your other examples worked, in the first one, it did not use _cum_func function, as the values were converted to a timedelta64[ns] after computing the cumsum, but in the second and third examples, it was handled well and only 1 column at a time was passed to _cum_func (I couldn't trace back to how that was happening)

from pandas.

pmhatre1 avatar pmhatre1 commented on May 28, 2024

@phofl @mroeschke any comment on this based on #41720. I found result is 1D while mask is an array. Thus I tried

flattened_mask = mask.flatten()
result[flattened_mask] = iNaT

but ended up in error at

block = self.blocks[self.blknos[i]]
values = block.iget(self.blklocs[i])
bp = BlockPlacement(slice(0, len(values)))

    in managers.py

from pandas.

Aloqeely avatar Aloqeely commented on May 28, 2024

take

from pandas.

pmhatre1 avatar pmhatre1 commented on May 28, 2024

Thanks @Aloqeely for helping me understand this.

from pandas.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.