是否可以为python scikits.timeseries time_series对象定义半年频率?

根据scikits.timeseries模块,定义time_series对象时可以使用以下频率: 年度频率,季度频率,每月,每周,每日等。完整列表显示在文档链接中:http://pytseries.sourceforge.net/core.constants.html#scikits.timeseries.const.freq_constants 频率不包括半年(每年两次)。 如何为scikits.timeseries.time_series对象定义半年频率?是否存在解决方案?     
已邀请:
定义四分之一频率并将其填充到50%:
import scikits.timeseries as ts

dates = ts.date_array(start_date=ts.Date('Q', '2009-01'),
                      end_date=ts.Date('Q', '2011-01'))
data = ts.TimeSeries(np.arange(9), dates=dates, mask=1-dates.quarter%2)

# returns:
timeseries([0 -- 2 -- 4 -- 6 -- 8],
   dates = [2009Q1 ... 2011Q1],
   freq  = Q-DEC)
    

要回复问题请先登录注册