python - pandas-更改重新采样时间序列的开始和结束日期

标签 python pandas datetime time-series

我有一个时间序列,我将其重新采样到此数据帧 df

我的数据是从 6 月 6 日到 6 月 28 日。它想将数据从 6 月 1 日延长到 6 月 30 日。 count 列只有在延长的时间段内才会有 0 值,而我的真实值从 6 日到 28 日。

Out[123]: 
                         count
Timestamp                    
2009-06-07 02:00:00         1
2009-06-07 03:00:00         0
2009-06-07 04:00:00         0
2009-06-07 05:00:00         0
2009-06-07 06:00:00         0

我需要制作

开始日期:2009-06-01 00:00:00

结束日期:2009-06-30 23:00:00

所以数据看起来像这样:

                         count
Timestamp                    
2009-06-01 01:00:00         0
2009-06-01 02:00:00         0
2009-06-01 03:00:00         0

有没有一种有效的方法来执行此操作。我能想到的唯一方法不是那么有效。我从昨天开始就在尝试这个。请帮忙

  index = pd.date_range('2009-06-01 00:00:00','2009-06-30 23:00:00', freq='H')
    df = pandas.DataFrame(numpy.zeros(len(index),1), index=index)
    df.columns=['zeros']
    result= pd.concat([df2,df])
    result1= pd.concat([df,result])
    result1.fillna(0)
    del result1['zero']

最佳答案

您可以创建一个具有所需开始和结束日期/时间的新索引,对时间序列数据重新采样并按计数聚合,然后将索引设置为新索引。

import pandas as pd

# create the index with the start and end times you want
t_index = pd.DatetimeIndex(pd.date_range(start='2009-06-01', end='2009-06-30 23:00:00', freq="1h"))

# create the data frame
df = pd.DataFrame([['2009-06-07 02:07:42'],
                   ['2009-06-11 17:25:28'],
                   ['2009-06-11 17:50:42'],
                   ['2009-06-11 17:59:18']], columns=['daytime'])
df['daytime'] = pd.to_datetime(df['daytime'])

# resample the data to 1 hour, aggregate by counts,
# then reset the index and fill the na's with 0
df2 = df.resample('1h', on='daytime').count().reindex(t_index).fillna(0)

关于python - pandas-更改重新采样时间序列的开始和结束日期,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45908146/

相关文章:

php - 在 .blade 模板中使用 Carbon 本地化日期

python - 如何修复 ValueError : need more than 1 value to unpack?

Python:出现频率

python - Pandas:多索引二级整数切片

php - DateTime::diff 和夏令时结束

java - ZonedDateTime 给出不正确的 UTC 偏移值

python - 在 Python 的 sqlite3 中使用外键

python - matplotlib draw_artist 和 canvas 更新删除以前的 axvline

Pandas Dataframe Reshape/Pivot - 索引错误中的重复值

python - 如何使用 pandas 写入 Excel 文档的中间