Skip to content
Advertisement

Efficient and elegant way to get sub-range maximum values of a Pandas Series

Say I have a pandas Series:

JavaScript

I have to get a series (or array) of subrange maximum values. For example, a subrange of 5. For the first element, the value should be max{2, 0, 8, 0, 1} = 8. The second value should be max{0, 8, 0, 1, 2} = 8.

Starting from the 8th element, there are less than 5 elements in the subrange. The value should just be the maximum of the remaining elements.

It should be like:

JavaScript

I know we can simply do this by iterating the Series. But as I know, that’s not quite efficient if we use iloc or iterate by using iterrows(). Is there any more efficient and elegant way to do this? I heard that vector operation should be very quick. But I haven’t found out how to use that.

Advertisement

Answer

You can check rolling

JavaScript
User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement