例如,如何获取xts时间序列对象中第一个或最后一个条目的年份作为字符串?在AAPL时间序列的这个例子中吗?

require(quantmod)
getSymbols("AAPL")

最佳答案

首次进入的年份。

format(index(first(AAPL)),"%Y")

上次进入年份...
format(index(last(AAPL)),"%Y")

07-24 09:23