-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
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
ENH: Support returning the same dtype as the caller for window ops (including extension dtypes) #11446
Comments
the rolling processors are implemented as float dtypes for simplicity. having ones for integers is not very useful as most rolling things do some sort of computations that end up as floats anyhow. Sure there are ones that don't (but in general we also need padding, meaning NaN's for these rolls). You could cast back, but its not entirely for free though can be done safely (e.g. see here so if you are interested in a PR for this, would take it. Note that rolling functions are not super friendly, see #8659 , so would love some contributions here! |
In sample code below rolling_apply takes an argument 'ix' which is a numpy array of dtype = 'int64' and by the time this array gets to get_type() function, its dtype has changed to 'float64'. I can make an explicit call in get_type() function to change this back: ix = ix.astype('int64'), but was curious why it gets changed.
Example below. I'm on version '0.17.0':
I also stepped through the code and believe I've identified the source of the problem. I thought I'd report it and see if others see this as an issue before trying to fix. Doing an explicit type change inside the get_type function as in this example also works.
The _process_data_structure() function turns this into a float.
Here's the logic that is explicitly changing the dtype to a float the first time. This can be omitted and the check updated to include 'float':
However, the cython code that I assume does the rolling window, also expects a float64. In this case, maybe an option is to update the dtype after the call_cython function.
The text was updated successfully, but these errors were encountered: