使用 python 对数据帧重新采样

resample dataframe with python

我需要使用 pandas.DataFrame.resample 函数对数据帧重新采样,如下所示:

data.set_index('TIMESTAMP').resample('24min', how='sum')

这没有问题,但是当我尝试使用“xmin”调用函数时,其中 x 是一个通用参数

  data.set_index('TIMESTAMP').resample('xmin', how='sum')

无法运行

有什么想法吗?

谢谢

编辑

def ratio_activ_equip(data, date_deb, date_fin, step):      

 # filtre_site(data, site)
filtre_date(data, date_deb, date_fin)
xmin = 'stepmin'
data.set_index('TIMESTAMP').resample(xmin, how='sum')
res = data.iloc[:,1:10] = data.iloc[:,1:10].divide(data.sum(axis=1), axis=0)
res = data
return res

EDIT2

def ratio_activ_equip(data, date_deb, date_fin, step):       #
     # filtre_site(data, site)
    filtre_date(data, date_deb, date_fin)
    #step = 10
    xmin = str(step) + 'min'
    data = data.set_index('TIMESTAMP').resample(xmin, how='sum')
    data.set_index('TIMESTAMP').resample(xmin, how='sum')
    res = data.iloc[:,1:10] = data.iloc[:,1:10].divide(data.sum(axis=1), axis=0)
    res = data
    return res

当我这样调用这个函数时:

res = ratio_activ_equip(y, '2016-05-10 22:00:00', '2016-05-14 22:00:00', 30)

我收到这个错误:

KeyError: 'TIMESTAMP'

有什么想法吗?

IIUC 你需要传递变量 xmin:

xmin = '24min'
data.set_index('TIMESTAMP').resample(xmin, how='sum')

更通用的是将 int 值转换为 str 并添加子字符串 min:

step = 10
xmin = str(step) + 'min'
data = data.set_index('TIMESTAMP').resample(xmin, how='sum')

step = 10
data = data.set_index('TIMESTAMP').resample(str(step) + 'min', how='sum')