Resampling with custom periods

后端 未结 2 531
爱一瞬间的悲伤
爱一瞬间的悲伤 2021-02-05 18:02

Is there a \'cookbook\' way of resampling a DataFrame with (semi)irregular periods?

I have a dataset at a daily interval and want it to resample to what sometimes (in s

2条回答
  •  悲&欢浪女
    2021-02-05 18:38

    If you use numpy 1.7, you can use datetime64 & timedelta64 arrays to do the calculation:

    create the sample data:

    import pandas as pd
    import numpy as np
    
    begin = pd.datetime(2013,1,1)
    end = pd.datetime(2013,2,20)
    
    dtrange = pd.date_range(begin, end)
    
    p1 = np.random.rand(len(dtrange)) + 5
    p2 = np.random.rand(len(dtrange)) + 10
    
    df = pd.DataFrame({'p1': p1, 'p2': p2}, index=dtrange)
    

    calculate the dekad's date:

    d = df.index.day - np.clip((df.index.day-1) // 10, 0, 2)*10 - 1
    date = df.index.values - np.array(d, dtype="timedelta64[D]")
    df.groupby(date).mean()
    

    The output is:

                     p1         p2
    2013-01-01  5.413795  10.445640
    2013-01-11  5.516063  10.491339
    2013-01-21  5.539676  10.528745
    2013-02-01  5.783467  10.478001
    2013-02-11  5.358787  10.579149
    

提交回复
热议问题