Skip to content
Advertisement

Pandas rolling window to return an array

Here is a sample code.

JavaScript

Output:

JavaScript

I want my ‘C’ column to be an array like [0.1231, -1.132, 0.8766]. I tried using rolling apply but in vain.

Expected Output:

JavaScript

Advertisement

Answer

You could use np.stride_tricks:

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