按月份分组XTS

时间:2018-07-06 04:45:35

标签: r xts zoo

我有一个xts对象,已使用split(data,“ months”)将其拆分为几个月。这将我的数据分成每年几个月。我想将我的数据分为几个月,而与年份无关。

1 个答案:

答案 0 :(得分:0)

require(lubridate) # we will use the month() function
# basically extracts the month from a date
split(data, month(as.Date(data))) 
# your code, with as.Date() we make sure it's the correct format