Python Forum
Rolling sum for a window of 2 days (Pandas)
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Rolling sum for a window of 2 days (Pandas)
#1
I'm trying to calculate rolling sum for a winows of 2 days for the Income column considering client ID & Category column wise.
import pandas as pd
import datetime as dt
table = pd.DataFrame(data = {'ClientID':[100,100,100,200,100,200,100,100,100,100],
                             'Date':['2017-10-01 13:11:24','2017-10-01 15:11:24','2017-10-02 09:11:24','2017-10-04 11:11:24','2017-10-04 13:11:24','2017-10-06 15:11:24','2017-10-06 13:11:24','2017-10-08 11:11:24','2017-10-08 13:11:24','2017-10-08 13:11:24'],
                             'Category':['A','A','A','B','A','B','A','A','A','B'],
                             'Income':[800,900,1000,900,1000,800,400,400,900,1000],},)

table['Date'] = pd.to_datetime(table['Date'])
So far i managed to calculate only a cumulative daily total of Income for the Client ID & Category grops.
# Client ID & Category wise daily cumulative total of Income
table['Cum_Income'] = table.groupby(by = [table['ClientID'],table['Category'],table['Date'].dt.date]) ['Income'].cumsum()
Highly apreciate if someone can help me to calculate rolling sum of Income column for a window of 2 days for the Client ID & Category groups.
Reply
#2
# Create a date only column
table['DateOnly'] = table['Date'].dt.date
# Set the created date only column as Datetime Index
table1 = table.set_index(pd.DatetimeIndex(table['DateOnly']))
# Create a new table that shows rolling sum of Income column for a window of 2 days for the Client ID & Category groups
table2 = table1.groupby(by = [table1['ClientID'],table1['Category']]).resample("1d").sum().fillna(0).rolling(window=2, min_periods=1)['Income'].sum()
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Rolling window and apply code JunkBoy 6 1,808 Jul-23-2022, 07:00 PM
Last Post: JunkBoy
  Hurst Exponent in Rolling Basis illmattic 1 3,802 Jan-06-2021, 09:49 PM
Last Post: illmattic
  Calculating Beta over Rolling Periods illmattic 2 5,270 Sep-27-2020, 11:27 PM
Last Post: Larz60+
  Apply rolling window function over time dimension of 3D data Staph 0 2,160 Jan-01-2020, 08:31 AM
Last Post: Staph
  Grouping data based on rolling conditions kapilan15 0 1,930 Jun-05-2019, 01:07 PM
Last Post: kapilan15
  Pandas .rolling() with some calculations inside irmscher 5 6,126 Apr-04-2019, 11:55 AM
Last Post: scidam
  How to use pandas.rolling mean for 3D input array? Prv_Yadv 1 3,805 Mar-26-2019, 11:49 AM
Last Post: scidam
  Numpy Rolling mean window Thunberd 1 4,781 Jun-14-2018, 01:37 AM
Last Post: Larz60+
  Creating a matrix of rolling variances vvvcvvcv 1 2,733 May-26-2018, 12:51 PM
Last Post: killerrex

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020