标签: r time-series xts
我有一个每月xts对象,函数frequency()返回值1,但我希望12.函数cycle()也不返回月号,而是返回值1对于每次观察。
frequency()
cycle()
library('quantmod') getSymbols("GS10", src="FRED") frequency(GS10) cycle(GS10)
答案 0 :(得分:1)
试试这个:
time(GS10) <- as.yearmon(time(GS10))