-
-
Notifications
You must be signed in to change notification settings - Fork 18.9k
Closed
Labels
Milestone
Description
The first resample starts at 2000-01-03 (as does foo
) whilst the second resample starts at 2000-01-04, should it?
foo = pd.Series(index=pd.bdate_range(datetime.date(2000,1,1),datetime.date(2001,1,1)))
foo.resample("BMS")
foo.resample("BMS").resample("B")
Migrated from StackOverflow.