python - 将 Pandas 时间序列切成 n 个月的 block

标签 python indexing pandas time-series slice

给定一个按日期索引的 pandas 系列,我需要将该系列切成 n 个月的 block 。下面的代码将数据分割成 12 个月的 block 。如何将其概括为 n 个月的 block ?另请注意,并非所有日期都在该系列中,因此该系列中可能不存在每个月的第一天和最后一天。

# Create a pandas series indexed by date
import pandas as pd
import numpy as np
dates = pd.date_range('2000-01-01', '2009-12-31')
data = np.random.rand(len(dates))
series = pd.Series(data, dates)

# Poke holes in the data, so not all dates are represented
series = series[series > 0.50]

# Slice the series into chunks of 12 months each
for year in range(2000, 2009+1):
    slice = series[str(year):str(year)]
    print "Start date =", slice.index[0], " End date =", slice.index[-1]

最佳答案

您可以使用pd.cut()将时间序列索引切成 block ,然后使用groupby执行自定义计算。

# Create a pandas series indexed by date
import pandas as pd
import numpy as np

np.random.seed(0)
dates = pd.date_range('2000-01-01', '2009-12-31', freq='D')
data = np.random.rand(len(dates))
series = pd.Series(data, dates)

# Poke holes in the data, so not all dates are represented
series = series[series > 0.8]

# create a data_range, suppose start at 2001-01-01, 3 month
date_rng = pd.date_range('2000-01-01', periods=50, freq='3MS')
labels = date_rng[1:]
# use pd.cut to cut ts index into chunks
grouped = series.groupby(pd.cut(series.index, bins=date_rng, labels=labels, right=False))

start_date = grouped.head(1).index
 Out[206]: 
 DatetimeIndex(['2000-01-08', '2000-04-08', '2000-07-03', '2000-10-02',
                '2001-01-03', '2001-04-04', '2001-07-01', '2001-10-02',
                '2002-01-11', '2002-04-05', '2002-07-01', '2002-10-02',
                '2003-01-02', '2003-04-03', '2003-07-02', '2003-10-04',
                '2004-01-01', '2004-04-01', '2004-07-03', '2004-10-03',
                '2005-01-07', '2005-04-08', '2005-07-12', '2005-10-05',
                '2006-01-01', '2006-04-01', '2006-07-01', '2006-10-04',
                '2007-01-05', '2007-04-04', '2007-07-05', '2007-10-06',
                '2008-01-01', '2008-04-05', '2008-07-05', '2008-10-01',
                '2009-01-02', '2009-04-04', '2009-07-04', '2009-10-02'],
               dtype='datetime64[ns]', freq=None, tz=None)

end_date = grouped.tail(1).index

 Out[207]: 
 DatetimeIndex(['2000-03-30', '2000-06-26', '2000-09-30', '2000-12-30',
                '2001-03-30', '2001-06-28', '2001-09-27', '2001-12-28',
                '2002-03-24', '2002-06-29', '2002-09-24', '2002-12-29',
                '2003-03-27', '2003-06-22', '2003-09-28', '2003-12-31',
                '2004-03-31', '2004-06-27', '2004-09-17', '2004-12-31',
                '2005-03-23', '2005-06-23', '2005-09-30', '2005-12-30',
                '2006-03-29', '2006-06-24', '2006-09-30', '2006-12-31',
                '2007-03-26', '2007-06-27', '2007-09-29', '2007-12-31',
                '2008-03-25', '2008-06-30', '2008-09-28', '2008-12-30',
                '2009-03-25', '2009-06-29', '2009-09-26', '2009-12-27'],
               dtype='datetime64[ns]', freq=None, tz=None)

关于python - 将 Pandas 时间序列切成 n 个月的 block ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31105354/

相关文章:

python - 如何查找两个 pandas 数据框并从另一个数据框列更新第一个数据框列中的值?

python - 在 Python : first time it runs through properly, 中运行 for 循环,但其余运行未正常运行

Python 以内存安全的方式使用析构函数

python - 截取窗口屏幕截图并使用 OpenCV 显示它时出现问题

python - 我们如何在pycharm中验证用python 3.7编写的代码在python 3.6中是否正常工作?

mysql - 在庞大的数据集上使用 IN 是个好主意吗?

python - mac 和 textmate 的新手,有人可以解释这些快捷方式吗?

indexing - 索引和聚集索引对数据库性能有多重要?

ruby-on-rails - rails : How to add add_index to existing table

python - 为什么随机森林需要更长的时间来拟合具有虚拟变量的数据框?