我有一个xts对象,已使用split(data,“ months”)将其拆分为几个月。这将我的数据分成每年几个月。我想将我的数据分为几个月,而与年份无关。
答案 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