每月 xts 对象的频率()和周期()returns 值“1”

frequency() and cycle() of a monthly xts object returns value "1"

我有一个月度 xts 对象,函数 frequency() return 的值为 1,但我期望为 12。函数 cycle() 也没有 return 月份数字,而是每次观察的值为 1。

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

试试这个:

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