You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Tried to use map function on Series directly it turned out the same, the function got called more than it should. So it should be the bug in the iterator.
After going through the source code, find out whenever the series is baked, the internal iterators are called and trigger the selector function. During this process, the selector function can be call numerous times from getColumnNames(), toArray(), and toPairs().
When using rollingwindow with the select function, the rolling windows are correct but select function calls the transformer more than it should.
Please see the following test code:
The following are the outputs:
I think only 4 times should be the correct number.
The text was updated successfully, but these errors were encountered: