zoukankan      html  css  js  c++  java
  • pandas.resample()

    http://www.cnblogs.com/hhh5460/p/5596340.html

    resample与groupby的区别:
    resample:在给定的时间单位内重取样
    groupby:对给定的数据条目进行统计

    函数原型:
    DataFrame.resample(rule, how=None, axis=0, fill_method=None, closed=None, label=None, convention='start', kind=None, loffset=None, limit=None, base=0)
    其中,参数how已经废弃了


    下面开始练习

    import numpy as np
    import pandas as pd

     
    Start by creating a series with 9 one minute timestamps.

    index = pd.date_range('1/1/2000', periods=9, freq='T')
    series = pd.Series(range(9), index=index)

     
    Downsample the series into 3 minute bins and sum the values of the timestamps falling into a bin.

    series.resample('3T').sum()

     
    To include this value close the right side of the bin interval as illustrated in the example below this one.

    series.resample('3T', label='right').sum()


    Downsample the series into 3 minute bins as above, but close the right side of the bin interval.

    series.resample('3T', label='right', closed='right').sum()


    Upsample the series into 30 second bins.

    series.resample('30S').asfreq()

     
    Upsample the series into 30 second bins and fill the NaN values using the pad method.

    series.resample('30S').pad()

     
    Upsample the series into 30 second bins and fill the NaN values using the bfill method.

    series.resample('30S').bfill()

     
    Pass a custom function via apply

    def custom_resampler(array_like):
        return np.sum(array_like)+5
    
    series.resample('3T').apply(custom_resampler)

     
    附:常见时间频率
    A year
    M month
    W week
    D day
    H hour
    T minute
    S second

  • 相关阅读:
    zoj 3599 Game 博弈论
    hdu 2486/2580 / poj 3922 A simple stone game 博弈论
    hdu 1517 A Multiplication Game 博弈论
    hdu 4407 Sum 容斥原理
    hdu 4686 Arc of Dream
    hdu 4588 Count The Carries
    hdu 4586 Play the Dice
    C#学习(5)
    C#学习(4)
    C#学习(3)
  • 原文地址:https://www.cnblogs.com/dadadechengzi/p/7097836.html
Copyright © 2011-2022 走看看