每月xts对象的frequency()和cycle()返回值“1”

时间:2015-03-16 20:43:29

标签: r time-series xts

我有一个每月xts对象,函数frequency()返回值1,但我希望12.函数cycle()也不返回月号,而是返回值1对于每次观察。

library('quantmod')
getSymbols("GS10", src="FRED")
frequency(GS10)
cycle(GS10)

1 个答案:

答案 0 :(得分:1)

试试这个:

time(GS10) <- as.yearmon(time(GS10))